|
Préférences
Moteurs de recherche
|
|||||||||||||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
javax.xml.crypto.dsig.dom
|
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. |
|
DOMSignContext(KeySelector ks,
Node parent)
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 |
getNextSibling()
Returns the nextSibling node. |
Node |
getParent()
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 |
Methods inherited from interface javax.xml.crypto.XMLCryptoContext |
---|
get, getBaseURI, getDefaultNamespacePrefix, getKeySelector, getNamespacePrefix, getProperty, getURIDereferencer, put, putNamespacePrefix, setBaseURI, setDefaultNamespacePrefix, setKeySelector, setProperty, setURIDereferencer |
Constructor Detail |
---|
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.
signingKey
- the signing keyparent
- the parent node
NullPointerException
- if signingKey
or
parent
is null
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.
signingKey
- the signing keyparent
- the parent nodenextSibling
- the next sibling node
NullPointerException
- if signingKey
,
parent
or nextSibling
is null
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.
ks
- the key selectorparent
- the parent node
NullPointerException
- if ks
or parent
is null
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.
ks
- the key selectorparent
- the parent nodenextSibling
- the next sibling node
NullPointerException
- if ks
, parent
or
nextSibling
is null
Method Detail |
---|
public void setParent(Node parent)
parent
- the parent node. The marshalled XMLSignature
will be added as a child element of this node.
NullPointerException
- if parent
is null
getParent()
public void setNextSibling(Node nextSibling)
nextSibling
- the next sibling node. The marshalled
XMLSignature
will be inserted immediately before this
node. Specify null
to remove the current setting.getNextSibling()
public Node getParent()
null
)setParent(Node)
public Node getNextSibling()
null
if not specified.setNextSibling(Node)