public class RegistryKey extends Object implements Serializable
Constructor and Description |
---|
RegistryKey(String namespaceUri,
String... key)
For path /a/b/c and property 'x', put in
|
RegistryKey(String namespaceUri,
String[] path,
String property)
A constructor to specifically declare the path and property portions of the key.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
String |
getNamespaceUri() |
String[] |
getPath() |
String |
getProperty() |
int |
hashCode() |
String |
toString() |
public RegistryKey(String namespaceUri, String... key)
"a", "b", "c", "x"The property can also be null as in
"a", "b", "c", null
namespaceUri
- the key namespace to use. If left null then the
default
will be used.key
- the path elements followed by the property name.public RegistryKey(String namespaceUri, String[] path, String property)
namespaceUri
- the key namespace to use. If left null then the
default
will be used.path
- the path part of the keyproperty
- the property name for the key. This may be null.Copyright © 2005–2017 Alfresco Software. All rights reserved.