mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
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:
@@ -31,9 +31,9 @@ public class AVMContext
|
||||
public AVMNodeDAO fAVMNodeDAO;
|
||||
|
||||
/**
|
||||
* The Repository DAO.
|
||||
* The AVMStore DAO.
|
||||
*/
|
||||
public RepositoryDAO fRepositoryDAO;
|
||||
public AVMStoreDAO fAVMStoreDAO;
|
||||
|
||||
/**
|
||||
* The VersionRootDAO.
|
||||
@@ -66,9 +66,9 @@ public class AVMContext
|
||||
public DeletedChildDAO fDeletedChildDAO;
|
||||
|
||||
/**
|
||||
* The NewInRepositoryDAO
|
||||
* The NewInAVMStoreDAO
|
||||
*/
|
||||
public NewInRepositoryDAO fNewInRepositoryDAO;
|
||||
public NewInAVMStoreDAO fNewInAVMStoreDAO;
|
||||
|
||||
/**
|
||||
* @param nodeDAO the fAVMNodeDAO to set
|
||||
@@ -119,11 +119,11 @@ public class AVMContext
|
||||
}
|
||||
|
||||
/**
|
||||
* @param repositoryDAO the fRepositoryDAO to set
|
||||
* @param aVMStore the fAVMStoreDAO to set
|
||||
*/
|
||||
public void setRepositoryDAO(RepositoryDAO repositoryDAO)
|
||||
public void setAvmStoreDAO(AVMStoreDAO aVMStoreDAO)
|
||||
{
|
||||
fRepositoryDAO = repositoryDAO;
|
||||
fAVMStoreDAO = aVMStoreDAO;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -143,10 +143,10 @@ public class AVMContext
|
||||
}
|
||||
|
||||
/**
|
||||
* @param newInRepositoryDAO The DAO to set.
|
||||
* @param newInAVMStoreDAO The DAO to set.
|
||||
*/
|
||||
public void setNewInRepositoryDAO(NewInRepositoryDAO newInRepositoryDAO)
|
||||
public void setNewInAVMStoreDAO(NewInAVMStoreDAO newInAVMStoreDAO)
|
||||
{
|
||||
fNewInRepositoryDAO = newInRepositoryDAO;
|
||||
fNewInAVMStoreDAO = newInAVMStoreDAO;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user