public interface SignerSignatureProperties
SignatureProperties class. This view is used by
the application in the signature creation use case.Signer.createSignatureProperties()| Modifier and Type | Method and Description |
|---|---|
SignatureProperty |
addSignatureProperty(SignatureProperty signatureProperty)
Appends a signature property to the list maintained by this signature property container.
|
SignatureProperty |
createSignatureProperty(org.w3c.dom.DocumentFragment content)
Creates a new signature property.
|
SignatureProperty |
createSignatureProperty(org.w3c.dom.Element content)
Creates a new signature property.
|
SignatureProperty |
createSignatureProperty(java.lang.String content)
Creates a new signature property.
|
java.lang.String |
getId()
Gets the value of the Id attribute.
|
SignatureProperty[] |
getSignatureProperties()
Gets an array containing all signature properties of this container.
|
SignatureProperty |
removeSignatureProperty(SignatureProperty signatureProperty)
Removes the specified signature property from this signature property container.
|
void |
setId(java.lang.String id)
Sets the Id attribute value of the signature property container.
|
org.w3c.dom.Element |
toElement()
Gets a DOM element representation of this signature property container.
|
SignatureProperty createSignatureProperty(java.lang.String content)
content - The value for the DOM Text node to be set as child of the SignatureProperty element.SignatureProperty createSignatureProperty(org.w3c.dom.Element content)
content - Contains the DOM element which will become the only child node of the SignatureProperty
element.SignatureProperty createSignatureProperty(org.w3c.dom.DocumentFragment content)
content - Contains the DOM document fragment which children will become the child nodes of the
SignatureProperty element.SignatureProperty addSignatureProperty(SignatureProperty signatureProperty)
Object
container. If the signature property is already in the signature property container, this method will
have no effect. If the signature property has already been added to a signature property container,
this method will also have no effect.signatureProperty - The signature property to be appended. Must not be null.null if the specified signature property is
already in the container, of if the signature property container has already been incorporated
into an Object container, or if the signature property has already been added to
a signature property container, or if the signature property does not have its Target attribute
set.SignatureProperty removeSignatureProperty(SignatureProperty signatureProperty)
Object container.
If the signature property is not in the signature property container, nothing will happen.signatureProperty - The signature property to be removed. Must not be null.null if the specified signature property is not
in this signature property container, or if the signature property container has already been
incorporated into an Object container.SignatureProperty[] getSignatureProperties()
null if there
are no properties in this container.java.lang.String getId()
null if the attribute does not exist.void setId(java.lang.String id)
null, the possibly existing Id
attribute will be removed. If the signature property container has already been added to a Object container, this method will have no effect.id - The Id attribute value.org.w3c.dom.Element toElement()