java.lang.Object | ||
↳ | javax.xml.crypto.dom.DOMCryptoContext | |
↳ | javax.xml.crypto.dsig.dom.DOMSignContext |
A DOM-specific XMLSignContext
. This class contains additional methods
to specify the location in a DOM tree where an 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 XMLSignature
objects).
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a
DOMSignContext with the specified signing key
and parent node. | |||||||||||
Creates a
DOMSignContext with the specified signing key,
parent and next sibling nodes. | |||||||||||
Creates a
DOMSignContext with the specified key selector
and parent node. | |||||||||||
Creates a
DOMSignContext with the specified key selector,
parent and next sibling nodes. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the nextSibling node.
| |||||||||||
Returns the parent node.
| |||||||||||
Sets the next sibling node.
| |||||||||||
Sets the parent node.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
Creates a DOMSignContext
with the specified signing key
and parent node. The signing key is stored in a
singleton KeySelector
that is
returned by the 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 setNextSibling
method.
signingKey | the signing key |
---|---|
parent | the parent node |
NullPointerException | if signingKey or
parent is null
|
---|
Creates a DOMSignContext
with the specified signing key,
parent and next sibling nodes. The signing key is stored in a
singleton KeySelector
that is
returned by the 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.
signingKey | the signing key |
---|---|
parent | the parent node |
nextSibling | the next sibling node |
NullPointerException | if signingKey ,
parent or nextSibling is null
|
---|
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
setNextSibling
method.
ks | the key selector |
---|---|
parent | the parent node |
NullPointerException | if ks or parent
is null
|
---|
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.
ks | the key selector |
---|---|
parent | the parent node |
nextSibling | the next sibling node |
NullPointerException | if ks , parent or
nextSibling is null
|
---|
Returns the nextSibling node.
null
if not specified.Sets the next sibling node.
nextSibling | the next sibling node. The marshalled
XMLSignature will be inserted immediately before this
node. Specify null to remove the current setting. |
---|
Sets the parent node.
parent | the parent node. The marshalled XMLSignature
will be added as a child element of this node. |
---|
NullPointerException | if parent is null |
---|