DOMSignContextpublic class DOMSignContext extends DOMCryptoContext implements XMLSignContextA DOM-specific {@link XMLSignContext}. This class contains additional methods
to specify the location in a DOM tree where an {@link XMLSignature}
object is to be marshalled when generating the signature.
Note that DOMSignContext instances can contain
information and state specific to the XML signature structure it is
used with. The results are unpredictable if a
DOMSignContext is used with different signature structures
(for example, you should not use the same DOMSignContext
instance to sign two different {@link XMLSignature} objects). |
Fields Summary |
---|
private Node | parent | private Node | nextSibling |
Constructors Summary |
---|
public DOMSignContext(Key signingKey, Node parent)Creates a DOMSignContext with the specified signing key
and parent node. The signing key is stored in a
{@link KeySelector#singletonKeySelector singleton KeySelector} that is
returned by the {@link #getKeySelector getKeySelector} method.
The marshalled XMLSignature will be added as the last
child element of the specified parent node unless a next sibling node is
specified by invoking the {@link #setNextSibling setNextSibling} method.
if (signingKey == null) {
throw new NullPointerException("signingKey cannot be null");
}
if (parent == null) {
throw new NullPointerException("parent cannot be null");
}
setKeySelector(KeySelector.singletonKeySelector(signingKey));
this.parent = parent;
| public DOMSignContext(Key signingKey, Node parent, Node nextSibling)Creates a DOMSignContext with the specified signing key,
parent and next sibling nodes. The signing key is stored in a
{@link KeySelector#singletonKeySelector singleton KeySelector} that is
returned by the {@link #getKeySelector getKeySelector} method.
The marshalled XMLSignature will be inserted as a child
element of the specified parent node and immediately before the
specified next sibling node.
if (signingKey == null) {
throw new NullPointerException("signingKey cannot be null");
}
if (parent == null) {
throw new NullPointerException("parent cannot be null");
}
if (nextSibling == null) {
throw new NullPointerException("nextSibling cannot be null");
}
setKeySelector(KeySelector.singletonKeySelector(signingKey));
this.parent = parent;
this.nextSibling = nextSibling;
| public DOMSignContext(KeySelector ks, Node parent)Creates a DOMSignContext with the specified key selector
and parent node. The marshalled XMLSignature will be added
as the last child element of the specified parent node unless a next
sibling node is specified by invoking the
{@link #setNextSibling setNextSibling} method.
if (ks == null) {
throw new NullPointerException("key selector cannot be null");
}
if (parent == null) {
throw new NullPointerException("parent cannot be null");
}
setKeySelector(ks);
this.parent = parent;
| public DOMSignContext(KeySelector ks, Node parent, Node nextSibling)Creates a DOMSignContext with the specified key selector,
parent and next sibling nodes. The marshalled XMLSignature
will be inserted as a child element of the specified parent node and
immediately before the specified next sibling node.
if (ks == null) {
throw new NullPointerException("key selector cannot be null");
}
if (parent == null) {
throw new NullPointerException("parent cannot be null");
}
if (nextSibling == null) {
throw new NullPointerException("nextSibling cannot be null");
}
setKeySelector(ks);
this.parent = parent;
this.nextSibling = nextSibling;
|
Methods Summary |
---|
public org.w3c.dom.Node | getNextSibling()Returns the nextSibling node.
return nextSibling;
| public org.w3c.dom.Node | getParent()Returns the parent node.
return parent;
| public void | setNextSibling(org.w3c.dom.Node nextSibling)Sets the next sibling node.
this.nextSibling = nextSibling;
| public void | setParent(org.w3c.dom.Node parent)Sets the parent node.
if (parent == null) {
throw new NullPointerException("parent is null");
}
this.parent = parent;
|
|