mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merged DEV\EXTENSIONS to HEAD
svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4868 svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4869 . svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4904 svn://svn.alfresco.com:3691/alfresco/BRANCHES/DEV/EXTENSIONS@4938 . Module management support Modularization of Records Management git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4956 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -29,16 +29,16 @@ public interface RegistryService
|
||||
/**
|
||||
* Assign a value to the registry key, which must be of the form <b>/a/b/c</b>.
|
||||
*
|
||||
* @param key the registry key path delimited with '/'.
|
||||
* @param key the registry key.
|
||||
* @param value any value that can be stored in the repository.
|
||||
*/
|
||||
void addValue(String key, Serializable value);
|
||||
void addValue(RegistryKey key, Serializable value);
|
||||
|
||||
/**
|
||||
* @param key the registry key path delimited with '/'.
|
||||
* @param key the registry key.
|
||||
* @return Returns the value stored in the key.
|
||||
*
|
||||
* @see #addValue(String, Serializable)
|
||||
*/
|
||||
Serializable getValue(String key);
|
||||
Serializable getValue(RegistryKey key);
|
||||
}
|
||||
|
Reference in New Issue
Block a user