Author: tchemit Date: 2008-01-24 00:34:07 +0000 (Thu, 24 Jan 2008) New Revision: 475 Modified: trunk/simexplorer-is-service/src/java/fr/cemagref/simexplorer/is/service/StorageService.java Log: import inutile + javadoc Modified: trunk/simexplorer-is-service/src/java/fr/cemagref/simexplorer/is/service/StorageService.java =================================================================== --- trunk/simexplorer-is-service/src/java/fr/cemagref/simexplorer/is/service/StorageService.java 2008-01-24 00:32:04 UTC (rev 474) +++ trunk/simexplorer-is-service/src/java/fr/cemagref/simexplorer/is/service/StorageService.java 2008-01-24 00:34:07 UTC (rev 475) @@ -26,7 +26,6 @@ import fr.cemagref.simexplorer.is.entities.data.LoggableElement; import fr.cemagref.simexplorer.is.entities.metadata.MetaDataEntity; -import fr.cemagref.simexplorer.is.entities.metadata.Version; /** * Service interface @@ -58,6 +57,7 @@ /** * Save a remote element * + * @param token * @param zipRemoteStream * RIIO stream containing data inside a zip * @return Metadata of element imported @@ -69,6 +69,7 @@ /** * Save a remote element * + * @param token * @param xmlRemoteStream * RIIO stream containing XML Stream * @param attachmentsRemoteStream @@ -84,6 +85,7 @@ /** * Retrieve metadata (latest version) * + * @param token * @param uuid * @return * @throws Exception @@ -93,6 +95,7 @@ /** * Retrieve metadata * + * @param token * @param uuid * @param version * @return @@ -104,6 +107,7 @@ /** * Export element to a remote stream * + * @param token * @param xmlOutputStream * RMIIO stream where to save data * @param uuid @@ -118,8 +122,10 @@ * * @param token * @param uuid + * @param version * @param dataKey - * @param remoteStream + * @return + * @throws Exception */ RemoteInputStream retrieveData(String token, String uuid, String version, String dataKey) throws Exception; @@ -127,6 +133,7 @@ /** * Retrieve number of elements matching query * + * @param token * @param query * @param onlyLatest * @return @@ -138,6 +145,7 @@ /** * Find elements matching query * + * @param token * @param query * @param onlyLatest * @param indexStart @@ -153,6 +161,7 @@ /** * Retrieve number of applications * + * @param token * @param onlyLatest * @return * @throws Exception @@ -163,6 +172,7 @@ /** * Get a list of applications * + * @param token * @param onlyLatest * @param start * @param count @@ -176,6 +186,7 @@ /** * Fully load an element * + * @param token * @param uuid * @param version * @return @@ -190,6 +201,7 @@ * @param token * @param uuid * @return + * @throws Exception */ MetaDataEntity[] getVersions(String token, String uuid) throws Exception;