SignaturePropertypublic class SignatureProperty extends SignatureElementProxy Handles <ds:SignatureProperty> elements
Addittional information item concerning the generation of the signature(s) can
be placed in this Element |
Fields Summary |
---|
static Logger | log{@link java.util.logging} logging facility |
Constructors Summary |
---|
public SignatureProperty(Document doc, String Target)Constructs{@link SignatureProperty} using specified Target attribute
this(doc, Target, null);
| public SignatureProperty(Document doc, String Target, String Id)Constructs {@link SignatureProperty} using sepcified Target attribute and Id attribute
super(doc);
this.setTarget(Target);
this.setId(Id);
| public SignatureProperty(Element element, String BaseURI)Constructs a {@link SignatureProperty} from an {@link Element}
super(element, BaseURI);
|
Methods Summary |
---|
public org.w3c.dom.Node | appendChild(org.w3c.dom.Node node)Method appendChild
return this._constructionElement.appendChild(node);
| public java.lang.String | getBaseLocalName()
return Constants._TAG_SIGNATUREPROPERTY;
| public java.lang.String | getId()Returns the Id attribute
return this._constructionElement.getAttributeNS(null, Constants._ATT_ID);
| public java.lang.String | getTarget()Returns the Target attribute
return this._constructionElement.getAttributeNS(null, Constants._ATT_TARGET);
| public void | setId(java.lang.String Id)Sets the Id attribute
if ((this._state == MODE_SIGN) && (Id != null)) {
this._constructionElement.setAttributeNS(null, Constants._ATT_ID, Id);
IdResolver.registerElementById(this._constructionElement, Id);
}
| public void | setTarget(java.lang.String Target)Sets the Target attribute
if ((this._state == MODE_SIGN) && (Target != null)) {
this._constructionElement.setAttributeNS(null, Constants._ATT_TARGET, Target);
}
|
|