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:
@@ -161,8 +161,8 @@ public class AVMInterpreter
|
||||
}
|
||||
else if (command[0].equals("lsrep"))
|
||||
{
|
||||
List<RepositoryDescriptor> repos = fService.getRepositories();
|
||||
for (RepositoryDescriptor repo : repos)
|
||||
List<AVMStoreDescriptor> repos = fService.getAVMStores();
|
||||
for (AVMStoreDescriptor repo : repos)
|
||||
{
|
||||
out.println(repo);
|
||||
}
|
||||
@@ -173,7 +173,7 @@ public class AVMInterpreter
|
||||
{
|
||||
return "Syntax Error.";
|
||||
}
|
||||
List<VersionDescriptor> listing = fService.getRepositoryVersions(command[1]);
|
||||
List<VersionDescriptor> listing = fService.getAVMStoreVersions(command[1]);
|
||||
for (VersionDescriptor desc : listing)
|
||||
{
|
||||
out.println(desc);
|
||||
@@ -185,7 +185,7 @@ public class AVMInterpreter
|
||||
{
|
||||
return "Syntax Error.";
|
||||
}
|
||||
fService.createRepository(command[1]);
|
||||
fService.createAVMStore(command[1]);
|
||||
}
|
||||
else if (command[0].equals("load"))
|
||||
{
|
||||
@@ -307,7 +307,7 @@ public class AVMInterpreter
|
||||
{
|
||||
return "Syntax Error.";
|
||||
}
|
||||
fService.purgeRepository(command[1]);
|
||||
fService.purgeAVMStore(command[1]);
|
||||
}
|
||||
else if (command[0].equals("rmver"))
|
||||
{
|
||||
|
Reference in New Issue
Block a user