Package org.alfresco.repo.admin.registry
Class RegistryKey
- java.lang.Object
-
- org.alfresco.repo.admin.registry.RegistryKey
-
- All Implemented Interfaces:
Serializable
public class RegistryKey extends Object implements Serializable
Key for looking up registry metadata.- Author:
- Derek Hulley
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RegistryKey(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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetNamespaceUri()String[]getPath()StringgetProperty()inthashCode()StringtoString()
-
-
-
Constructor Detail
-
RegistryKey
public RegistryKey(String namespaceUri, String... key)
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
public RegistryKey(String namespaceUri, String[] path, String property)
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.
-
-