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

@@ -26,9 +26,9 @@ import java.util.Date;
public class VersionDescriptor
{
/**
* The name of the repository this version belongs to.
* The name of the store this version belongs to.
*/
private String fRepositoryName;
private String fAVMStoreName;
/**
* The version id.
@@ -47,29 +47,29 @@ public class VersionDescriptor
/**
* New one up.
* @param repName The repository name.
* @param storeName The store name.
* @param versionID The version id.
* @param creator The creator.
* @param createDate The create date.
*/
public VersionDescriptor(String repName,
public VersionDescriptor(String storeName,
int versionID,
String creator,
long createDate)
{
fRepositoryName = repName;
fAVMStoreName = storeName;
fVersionID = versionID;
fCreator = creator;
fCreateDate = createDate;
}
/**
* Get the repository name.
* @return The repository name.
* Get the store name.
* @return The store name.
*/
public String getRepositoryName()
public String getAVMStoreName()
{
return fRepositoryName;
return fAVMStoreName;
}
/**
@@ -103,7 +103,7 @@ public class VersionDescriptor
{
StringBuilder builder = new StringBuilder();
builder.append("[");
builder.append(fRepositoryName);
builder.append(fAVMStoreName);
builder.append(":");
builder.append("" + fVersionID);
builder.append(":");