Renamed a few things. What used to be SuperRepository (kind of meaning free name

wasn't it) is now AVMRepository.  What used to be Repository is now AVMStore as it
more closely matches what is meant by a store in Alfresco.  Many adjustments
in ancillary class names, references, and comments followed.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3329 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-07-16 18:19:59 +00:00
parent 1510998f69
commit 60cdda3f13
42 changed files with 656 additions and 680 deletions

View File

@@ -39,33 +39,33 @@ public interface VersionRootDAO
public void delete(VersionRoot vr);
/**
* Get all the version roots in a given repository.
* @param rep The repository.
* Get all the version roots in a given store.
* @param store The store.
* @return A List of VersionRoots. In id order.
*/
public List<VersionRoot> getAllInRepository(Repository rep);
public List<VersionRoot> getAllInAVMStore(AVMStore store);
/**
* Get the VersionRoot corresponding to the given id.
* @param rep The repository
* @param store The store
* @param id The version id.
* @return The VersionRoot or null if not found.
*/
public VersionRoot getByVersionID(Repository rep, int id);
public VersionRoot getByVersionID(AVMStore store, int id);
/**
* Get the version of a repository by dates.
* @param rep The repository.
* Get the version of a store by dates.
* @param store The store.
* @param from The starting date. May be null but not with to null also.
* @param to The ending date. May be null but not with from null also.
* @return A List of VersionRoots.
*/
public List<VersionRoot> getByDates(Repository rep, Date from, Date to);
public List<VersionRoot> getByDates(AVMStore store, Date from, Date to);
/**
* Get the highest numbered version in a repository.
* @param rep The repository.
* Get the highest numbered version in a store.
* @param stor The store.
* @return The highest numbered version.
*/
public VersionRoot getMaxVersion(Repository rep);
public VersionRoot getMaxVersion(AVMStore store);
}