mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
AVM stores are renamable. Beware. Database schema has changed since I needed to
introduce a synthetic primary key into the stores table. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4492 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1386,4 +1386,20 @@ public class AVMServiceImpl implements AVMService
|
||||
fAVMRepository.setACL(newPath, acl.getCopy());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename a store.
|
||||
* @param sourceName The original name.
|
||||
* @param destName The new name.
|
||||
* @throws AVMNotFoundException
|
||||
* @throws AVMExistsException
|
||||
*/
|
||||
public void renameStore(String sourceName, String destName)
|
||||
{
|
||||
if (sourceName == null || destName == null)
|
||||
{
|
||||
throw new AVMBadArgumentException("Illegal Null Argument.");
|
||||
}
|
||||
fAVMRepository.renameStore(sourceName, destName);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user