This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.xml.crypto.dsig.dom
class DOMSignContext

java.lang.Object extended by javax.xml.crypto.dom.DOMCryptoContext extended by javax.xml.crypto.dsig.dom.DOMSignContext
All Implemented Interfaces:
XMLCryptoContext, XMLSignContext

public class DOMSignContext
extends DOMCryptoContext
implements XMLSignContext

A 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).


Constructor Summary
DOMSignContext(Key signingKey, Node parent)

          Creates a DOMSignContext with the specified signing key and parent node.
DOMSignContext(Key signingKey, Node parent, Node nextSibling)

          Creates a DOMSignContext with the specified signing key, parent and next sibling nodes.

          Creates a DOMSignContext with the specified key selector and parent node.
DOMSignContext(KeySelector ks, Node parent, Node nextSibling)

          Creates a DOMSignContext with the specified key selector, parent and next sibling nodes.
 
Method Summary
 Node

          Returns the nextSibling node.
 Node

          Returns the parent node.
 void
setNextSibling(Node nextSibling)

          Sets the next sibling node.
 void
setParent(Node parent)

          Sets the parent node.
 
Methods inherited from class javax.xml.crypto.dom.DOMCryptoContext
get, getBaseURI, getDefaultNamespacePrefix, getElementById, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, iterator, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setIdAttributeNS, setKeySelector, setProperty, setURIDereferencer
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DOMSignContext

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.

Parameters:
signingKey - the signing key
parent - the parent node

DOMSignContext

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.

Parameters:
signingKey - the signing key
parent - the parent node
nextSibling - the next sibling node

DOMSignContext

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.

Parameters:
ks - the key selector
parent - the parent node

DOMSignContext

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.

Parameters:
ks - the key selector
parent - the parent node
nextSibling - the next sibling node
Method Detail

getNextSibling

public Node getNextSibling()
Returns the nextSibling node.

Returns:
the nextSibling node, or null if not specified.

getParent

public Node getParent()
Returns the parent node.

Returns:
the parent node (never null)

setNextSibling

public void setNextSibling(Node nextSibling)
Sets the next sibling node.

Parameters:
nextSibling - the next sibling node. The marshalled XMLSignature will be inserted immediately before this node. Specify null to remove the current setting.

setParent

public void setParent(Node parent)
Sets the parent node.

Parameters:
parent - the parent node. The marshalled XMLSignature will be added as a child element of this node.


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.