public class SignatureProperty extends Container
| Modifier and Type | Field and Description |
|---|---|
protected boolean |
addedToContainer_
Signals if this signature property has already been incorporated into a
SignatureProperties
container. |
protected java.lang.String |
id_
Value for the "Id" attribute of the XML SignatureProperty element.
|
protected java.lang.String |
target_
Value for the "Target" attribute of the XML SignatureProperty element.
|
containerDOMElem_| Modifier | Constructor and Description |
|---|---|
protected |
SignatureProperty(org.w3c.dom.Document owningDoc,
org.w3c.dom.DocumentFragment content)
Creates a new signature property.
|
protected |
SignatureProperty(org.w3c.dom.Document owningDoc,
org.w3c.dom.Element content)
Creates a new signature property.
|
protected |
SignatureProperty(org.w3c.dom.Document owningDoc,
java.lang.String content)
Creates a new signature property.
|
protected |
SignatureProperty(org.w3c.dom.Element propertyDOMElem,
org.w3c.dom.Document owningDoc)
Creates a new signature property from the specified SignatureProperty DOM element.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getId()
Gets the Id attribute value of the SignatureProperty element.
|
java.lang.String |
getTarget()
Gets the Target attribute value of the SignatureProperty element.
|
void |
setId(java.lang.String id)
Sets the Id attribute of the signature property.
|
void |
setTarget(java.lang.String target)
Sets the Target attribute of the signature property.
|
protected java.lang.String target_
protected java.lang.String id_
protected boolean addedToContainer_
SignatureProperties
container.protected SignatureProperty(org.w3c.dom.Element propertyDOMElem,
org.w3c.dom.Document owningDoc)
propertyDOMElem - The DOM element representation of the signature property.owningDoc - The DOM document which should be used to create necessary DOM nodes.protected SignatureProperty(org.w3c.dom.Document owningDoc,
java.lang.String content)
owningDoc - The DOM document which should be used to create necessary DOM nodes.content - The value for the DOM Text node to be set as child of the SignatureProperty element.protected SignatureProperty(org.w3c.dom.Document owningDoc,
org.w3c.dom.Element content)
owningDoc - The DOM document which should be used to create necessary DOM nodes.content - Contains the DOM element which will become the only child node of the SignatureProperty
element.protected SignatureProperty(org.w3c.dom.Document owningDoc,
org.w3c.dom.DocumentFragment content)
owningDoc - The DOM document which should be used to create necessary DOM nodes.content - Contains the DOM document fragment which children will become the child nodes of the
SignatureProperty element.public java.lang.String getId()
null if the Id attribute is not available.public void setId(java.lang.String id)
null, the attribute will be removed. If this
signature property has already been added to a SignatureProperties container, this method will
have no effect.id - The value for the Id attribute.public java.lang.String getTarget()
null if the Target attribute is not available.public void setTarget(java.lang.String target)
null or the empty string. If the target has been set already, its value
will be overwritten.target - The value for the target attribute.