r90 - trunk/simexplorer-si-storage/src/java/fr/cemagref/simexplorer/is/storage/service
Author: glandais Date: 2007-12-28 15:57:46 +0000 (Fri, 28 Dec 2007) New Revision: 90 Modified: trunk/simexplorer-si-storage/src/java/fr/cemagref/simexplorer/is/storage/service/StorageService.java Log: Modified: trunk/simexplorer-si-storage/src/java/fr/cemagref/simexplorer/is/storage/service/StorageService.java =================================================================== --- trunk/simexplorer-si-storage/src/java/fr/cemagref/simexplorer/is/storage/service/StorageService.java 2007-12-26 16:30:43 UTC (rev 89) +++ trunk/simexplorer-si-storage/src/java/fr/cemagref/simexplorer/is/storage/service/StorageService.java 2007-12-28 15:57:46 UTC (rev 90) @@ -11,33 +11,31 @@ @Remote public interface StorageService { - public void open() throws Exception; + void open() throws Exception; - public void close() throws Exception; + void close() throws Exception; - public void commit() throws Exception; + void commit() throws Exception; - public MetaDataEntity saveElement(RemoteInputStream zipRemoteStream) + MetaDataEntity saveElement(RemoteInputStream zipRemoteStream) throws Exception; - public MetaDataEntity saveElement(RemoteInputStream xmlRemoteStream, + MetaDataEntity saveElement(RemoteInputStream xmlRemoteStream, Map<String, RemoteInputStream> attachmentsRemoteStream) throws Exception; - public MetaDataEntity getMetadata(String uuid) throws Exception; + MetaDataEntity getMetadata(String uuid) throws Exception; - public MetaDataEntity getMetadata(String uuid, String version) - throws Exception; + MetaDataEntity getMetadata(String uuid, String version) throws Exception; - public int findFullTextCount(String query, boolean onlyLatest) - throws Exception; + int findFullTextCount(String query, boolean onlyLatest) throws Exception; - public MetaDataEntity[] findFullText(String query, boolean onlyLatest, + MetaDataEntity[] findFullText(String query, boolean onlyLatest, int indexStart, int count) throws Exception; - public int findApplicationsCount(boolean onlyLatest) throws Exception; + int findApplicationsCount(boolean onlyLatest) throws Exception; - public MetaDataEntity[] findApplications(boolean onlyLatest, int start, - int count) throws Exception; + MetaDataEntity[] findApplications(boolean onlyLatest, int start, int count) + throws Exception; }
participants (1)
-
glandais@users.labs.libre-entreprise.org