Package org.alfresco.repo.admin.registry
Class RegistryKey
java.lang.Object
org.alfresco.repo.admin.registry.RegistryKey
- All Implemented Interfaces:
Serializable
Key for looking up registry metadata.
- Author:
- Derek Hulley
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionRegistryKey(String namespaceUri, String... key) For path /a/b/c and property 'x', put inRegistryKey(String namespaceUri, String[] path, String property) A constructor to specifically declare the path and property portions of the key. -
Method Summary
-
Constructor Details
-
RegistryKey
For path /a/b/c and property 'x', put in"a", "b", "c", "x"
The property can also be null as in"a", "b", "c", null
- Parameters:
namespaceUri- the key namespace to use. If left null then thedefaultwill be used.key- the path elements followed by the property name.
-
RegistryKey
A constructor to specifically declare the path and property portions of the key.- Parameters:
namespaceUri- the key namespace to use. If left null then thedefaultwill be used.path- the path part of the keyproperty- the property name for the key. This may be null.
-
-
Method Details