Class DOMSignContext
java.lang.Object
javax.xml.crypto.dom.DOMCryptoContext
javax.xml.crypto.dsig.dom.DOMSignContext
- All Implemented Interfaces:
XMLSignContext, XMLCryptoContext
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).
- Implementation Note:
- The JDK implementation supports the following property that can be set
using the
setProperty
method.jdk.xmldsig.SecureRandom
: value must be aSecureRandom
. If specified, this object will be used to initialize the underlyingSignature
during signing using theSignature.initSign(PrivateKey, SecureRandom)
method.
- Since:
- 1.6
-
Constructor Summary
ConstructorsConstructorDescriptionDOMSignContext
(Key signingKey, Node parent) Creates aDOMSignContext
with the specified signing key and parent node.DOMSignContext
(Key signingKey, Node parent, Node nextSibling) Creates aDOMSignContext
with the specified signing key, parent and next sibling nodes.DOMSignContext
(KeySelector ks, Node parent) Creates aDOMSignContext
with the specified key selector and parent node.DOMSignContext
(KeySelector ks, Node parent, Node nextSibling) Creates aDOMSignContext
with the specified key selector, parent and next sibling nodes. -
Method Summary
Modifier and TypeMethodDescriptionReturns the nextSibling node.Returns the parent node.void
setNextSibling
(Node nextSibling) Sets the next sibling node.void
Sets the parent node.Methods declared in class DOMCryptoContext
get, getBaseURI, getDefaultNamespacePrefix, getElementById, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, iterator, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setIdAttributeNS, setKeySelector, setProperty, setURIDereferencer
Modifier and TypeMethodDescriptionThis implementation uses an internalHashMap
to get the object that the specified key maps to.Returns the base URI.Returns the default namespace prefix.getElementById
(String idValue) Returns theElement
with the specified ID attribute value.Returns the key selector for finding a key.getNamespacePrefix
(String namespaceURI, String defaultPrefix) This implementation uses an internalHashMap
to get the prefix that the specified URI maps to.getProperty
(String name) This implementation uses an internalHashMap
to get the object that the specified name maps to.Returns aURIDereferencer
that is used to dereferenceURIReference
s.iterator()
Returns a read-only iterator over the set of Id/Element mappings of thisDOMCryptoContext
.This implementation uses an internalHashMap
to map the key to the specified object.putNamespacePrefix
(String namespaceURI, String prefix) This implementation uses an internalHashMap
to map the URI to the specified prefix.void
setBaseURI
(String baseURI) Sets the base URI.void
setDefaultNamespacePrefix
(String defaultPrefix) Sets the default namespace prefix.void
setIdAttributeNS
(Element element, String namespaceURI, String localName) Registers the element's attribute specified by the namespace URI and local name to be of type ID.void
Sets the key selector for finding a key.setProperty
(String name, Object value) This implementation uses an internalHashMap
to map the name to the specified object.void
setURIDereferencer
(URIDereferencer dereferencer) Sets aURIDereferencer
that is used to dereferenceURIReference
s.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
DOMSignContext
Creates aDOMSignContext
with the specified signing key and parent node. The signing key is stored in asingleton KeySelector
that is returned by thegetKeySelector
method. The marshalledXMLSignature
will be added as the last child element of the specified parent node unless a next sibling node is specified by invoking thesetNextSibling
method.- Parameters:
signingKey
- the signing keyparent
- the parent node- Throws:
NullPointerException
- ifsigningKey
orparent
isnull
-
DOMSignContext
Creates aDOMSignContext
with the specified signing key, parent and next sibling nodes. The signing key is stored in asingleton KeySelector
that is returned by thegetKeySelector
method. The marshalledXMLSignature
will be inserted as a child element of the specified parent node and immediately before the specified next sibling node.- Parameters:
signingKey
- the signing keyparent
- the parent nodenextSibling
- the next sibling node- Throws:
NullPointerException
- ifsigningKey
,parent
ornextSibling
isnull
-
DOMSignContext
Creates aDOMSignContext
with the specified key selector and parent node. The marshalledXMLSignature
will be added as the last child element of the specified parent node unless a next sibling node is specified by invoking thesetNextSibling
method.- Parameters:
ks
- the key selectorparent
- the parent node- Throws:
NullPointerException
- ifks
orparent
isnull
-
DOMSignContext
Creates aDOMSignContext
with the specified key selector, parent and next sibling nodes. The marshalledXMLSignature
will be inserted as a child element of the specified parent node and immediately before the specified next sibling node.- Parameters:
ks
- the key selectorparent
- the parent nodenextSibling
- the next sibling node- Throws:
NullPointerException
- ifks
,parent
ornextSibling
isnull
-
-
Method Details
-
setParent
Sets the parent node.- Parameters:
parent
- the parent node. The marshalledXMLSignature
will be added as a child element of this node.- Throws:
NullPointerException
- ifparent
isnull
- See Also:
-
setNextSibling
Sets the next sibling node.- Parameters:
nextSibling
- the next sibling node. The marshalledXMLSignature
will be inserted immediately before this node. Specifynull
to remove the current setting.- See Also:
-
getParent
-
getNextSibling
Returns the nextSibling node.- Returns:
- the nextSibling node, or
null
if not specified. - See Also:
-