public interface CmisExtensionElement extends Serializable
An extension element can have a value or children, but not both.
Modifier and Type | Method and Description |
---|---|
Map<String,String> |
getAttributes()
Returns the attributes of the extension.
|
List<CmisExtensionElement> |
getChildren()
Returns the children of this extension.
|
String |
getName()
Returns the name of the extension.
|
String |
getNamespace()
Returns the namespace of the extension.
|
String |
getValue()
Returns the value of the extension as a String.
|
String getName()
null
String getNamespace()
The namespace must follow the XML rules for namespaces. Don't rely on namespaces because the Browser binding does not support namespaces!
null
if the namespace is not
set or not supported by the bindingString getValue()
null
if the value is
null
or the extension has childrenMap<String,String> getAttributes()
The attributes must follow the XML rules for attributes. Don't rely on attributes because the Browser binding does not support attributes!
null
if the attributes are
not set or not supported by the bindingList<CmisExtensionElement> getChildren()
null
if the extension
has a valueCopyright © 2009–2017 The Apache Software Foundation. All rights reserved.