Author: tchemit Date: 2008-01-24 00:25:53 +0000 (Thu, 24 Jan 2008) New Revision: 464 Modified: trunk/simexplorer-is-service/src/java/fr/cemagref/simexplorer/is/service/MockStorageServiceImpl.java Log: nouvelles m?\195?\169thodes du service Modified: trunk/simexplorer-is-service/src/java/fr/cemagref/simexplorer/is/service/MockStorageServiceImpl.java =================================================================== --- trunk/simexplorer-is-service/src/java/fr/cemagref/simexplorer/is/service/MockStorageServiceImpl.java 2008-01-23 22:14:08 UTC (rev 463) +++ trunk/simexplorer-is-service/src/java/fr/cemagref/simexplorer/is/service/MockStorageServiceImpl.java 2008-01-24 00:25:53 UTC (rev 464) @@ -85,6 +85,10 @@ checkImplemented(); } + public RemoteInputStream retrieveData(String token, String uuid, String version, String dataKey) throws Exception { + return null; + } + public int findFullTextCount(String token, String query, boolean onlyLatest) throws Exception { //TODO Changer return findApplicationsCount(token,onlyLatest); @@ -121,7 +125,12 @@ return explorationApplication; } - public String loginUser(String login, String password) { + public MetaDataEntity[] getVersions(String token, String uuid) throws Exception { + //TODO + return new MetaDataEntity[0]; + } + + public String loginUser(String login, String password) { return (String) checkImplemented(); }
participants (1)
-
tchemit@users.labs.libre-entreprise.org