Class DOMSignContext
- All Implemented Interfaces:
-
XMLSignContext
,XMLCryptoContext
public class DOMSignContext extends DOMCryptoContext implements XMLSignContext
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).
- Since:
- 1.6
Constructor Summary
Constructor | Description |
---|---|
DOMSignContext |
Creates a DOMSignContext with the specified signing key and parent node. |
DOMSignContext |
Creates a DOMSignContext with the specified signing key, parent and next sibling nodes. |
DOMSignContext |
Creates a DOMSignContext with the specified key selector and parent node. |
DOMSignContext |
Creates a DOMSignContext with the specified key selector, parent and next sibling nodes. |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
Node |
getNextSibling() |
Returns the nextSibling node. |
Node |
getParent() |
Returns the parent node. |
void |
setNextSibling |
Sets the next sibling node. |
void |
setParent |
Sets the parent node. |
Methods declared in class javax.xml.crypto.dom.DOMCryptoContext
get, getBaseURI, getDefaultNamespacePrefix, getElementById, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, iterator, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setIdAttributeNS, setKeySelector, setProperty, setURIDereferencer
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods declared in interface javax.xml.crypto.XMLCryptoContext
get, getBaseURI, getDefaultNamespacePrefix, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setKeySelector, setProperty, setURIDereferencer
Constructor Details
DOMSignContext
public DOMSignContext(Key signingKey, Node parent)
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.- Parameters:
-
signingKey
- the signing key -
parent
- the parent node - Throws:
-
NullPointerException
- ifsigningKey
orparent
isnull
DOMSignContext
public DOMSignContext(Key signingKey, Node parent, Node nextSibling)
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.- Parameters:
-
signingKey
- the signing key -
parent
- the parent node -
nextSibling
- the next sibling node - Throws:
-
NullPointerException
- ifsigningKey
,parent
ornextSibling
isnull
DOMSignContext
public DOMSignContext(KeySelector ks, Node parent)
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.- Parameters:
-
ks
- the key selector -
parent
- the parent node - Throws:
-
NullPointerException
- ifks
orparent
isnull
DOMSignContext
public DOMSignContext(KeySelector ks, Node parent, Node nextSibling)
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.- Parameters:
-
ks
- the key selector -
parent
- the parent node -
nextSibling
- the next sibling node - Throws:
-
NullPointerException
- ifks
,parent
ornextSibling
isnull
Method Details
setParent
public void setParent(Node parent)
- Parameters:
-
parent
- the parent node. The marshalledXMLSignature
will be added as a child element of this node. - Throws:
-
NullPointerException
- ifparent
isnull
- See Also:
setNextSibling
public void setNextSibling(Node nextSibling)
- Parameters:
-
nextSibling
- the next sibling node. The marshalledXMLSignature
will be inserted immediately before this node. Specifynull
to remove the current setting. - See Also:
getParent
public Node getParent()
- Returns:
- the parent node (never
null
) - See Also:
getNextSibling
public Node getNextSibling()
- Returns:
- the nextSibling node, or
null
if not specified. - See Also:
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.xml.crypto/javax/xml/crypto/dsig/dom/DOMSignContext.html