WCM SandboxService - add SandboxVersion (wraps AVM VersionDescriptor)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12640 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jan Vonka
2009-01-08 17:38:45 +00:00
parent 799761d5e9
commit f2d23ec0c1
5 changed files with 193 additions and 15 deletions

View File

@@ -322,9 +322,9 @@ public interface SandboxService
*
* @param sbStoreId staging sandbox store id
* @param includeSystemGenerated if false will ignore system generated snapshots else true to get all snapshots
* @return List<VersionDescriptor> list of AVM version descriptors
* @return List<SandboxVersion> list of sandbox versions
*/
public List<VersionDescriptor> listSnapshots(String sbStoreId, boolean includeSystemGenerated);
public List<SandboxVersion> listSnapshots(String sbStoreId, boolean includeSystemGenerated);
/**
* List snapshots (sandbox versions) for the given sandbox between given dates (ie. for staging sandbox)
@@ -335,8 +335,7 @@ public interface SandboxService
* @param from from date
* @param to to date
* @param includeSystemGenerated if false will ignore system generated snapshots else true to get all snapshots
* @return List<VersionDescriptor> list of AVM version descriptors
* @return List<SandboxVersion> list of sandbox versions
*/
public List<VersionDescriptor> listSnapshots(String sbStoreId, Date from, Date to, boolean includeSystemGenerated);
public List<SandboxVersion> listSnapshots(String sbStoreId, Date from, Date to, boolean includeSystemGenerated);
}