Java Doc for DOMSignContext.java in  » 6.0-JDK-Core » xml » javax » xml » crypto » dsig » dom » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » xml » javax.xml.crypto.dsig.dom 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.xml.crypto.dom.DOMCryptoContext
      javax.xml.crypto.dsig.dom.DOMSignContext

DOMSignContext
public class DOMSignContext extends DOMCryptoContext implements XMLSignContext(Code)
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).
author:
   Sean Mullan
author:
   JSR 105 Expert Group
since:
   1.6




Constructor Summary
public  DOMSignContext(Key signingKey, Node parent)
     Creates a DOMSignContext with the specified signing key and parent node.
public  DOMSignContext(Key signingKey, Node parent, Node nextSibling)
     Creates a DOMSignContext with the specified signing key, parent and next sibling nodes.
public  DOMSignContext(KeySelector ks, Node parent)
     Creates a DOMSignContext with the specified key selector and parent node.
public  DOMSignContext(KeySelector ks, Node parent, Node nextSibling)
     Creates a DOMSignContext with the specified key selector, parent and next sibling nodes.

Method Summary
public  NodegetNextSibling()
     Returns the nextSibling node.
public  NodegetParent()
     Returns the parent node.
public  voidsetNextSibling(Node nextSibling)
     Sets the next sibling node.
public  voidsetParent(Node parent)
     Sets the parent node.
Parameters:
  parent - the parent node.


Constructor Detail
DOMSignContext
public DOMSignContext(Key signingKey, Node parent)(Code)
Creates a DOMSignContext with the specified signing key and parent node. The signing key is stored in a KeySelector.singletonKeySelector singleton KeySelector that is returned by the DOMSignContext.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 DOMSignContext.setNextSibling setNextSibling method.
Parameters:
  signingKey - the signing key
Parameters:
  parent - the parent node
throws:
  NullPointerException - if signingKey or parent is null



DOMSignContext
public DOMSignContext(Key signingKey, Node parent, Node nextSibling)(Code)
Creates a DOMSignContext with the specified signing key, parent and next sibling nodes. The signing key is stored in a KeySelector.singletonKeySelector singleton KeySelector that is returned by the DOMSignContext.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
Parameters:
  parent - the parent node
Parameters:
  nextSibling - the next sibling node
throws:
  NullPointerException - if signingKey, parent or nextSibling is null



DOMSignContext
public DOMSignContext(KeySelector ks, Node parent)(Code)
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 DOMSignContext.setNextSibling setNextSibling method.
Parameters:
  ks - the key selector
Parameters:
  parent - the parent node
throws:
  NullPointerException - if ks or parent is null



DOMSignContext
public DOMSignContext(KeySelector ks, Node parent, Node nextSibling)(Code)
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
Parameters:
  parent - the parent node
Parameters:
  nextSibling - the next sibling node
throws:
  NullPointerException - if ks, parent or nextSibling is null




Method Detail
getNextSibling
public Node getNextSibling()(Code)
Returns the nextSibling node. the nextSibling node, or null if not specified.
See Also:   DOMSignContext.setNextSibling(Node)



getParent
public Node getParent()(Code)
Returns the parent node. the parent node (never null)
See Also:   DOMSignContext.setParent(Node)



setNextSibling
public void setNextSibling(Node nextSibling)(Code)
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.
See Also:   DOMSignContext.getNextSibling



setParent
public void setParent(Node parent)(Code)
Sets the parent node.
Parameters:
  parent - the parent node. The marshalled XMLSignature will be added as a child element of this node.
throws:
  NullPointerException - if parent is null
See Also:   DOMSignContext.getParent



Methods inherited from javax.xml.crypto.dom.DOMCryptoContext
public Object get(Object key)(Code)(Java Doc)
public String getBaseURI()(Code)(Java Doc)
public String getDefaultNamespacePrefix()(Code)(Java Doc)
public Element getElementById(String idValue)(Code)(Java Doc)
public KeySelector getKeySelector()(Code)(Java Doc)
public String getNamespacePrefix(String namespaceURI, String defaultPrefix)(Code)(Java Doc)
public Object getProperty(String name)(Code)(Java Doc)
public URIDereferencer getURIDereferencer()(Code)(Java Doc)
public Iterator iterator()(Code)(Java Doc)
public Object put(Object key, Object value)(Code)(Java Doc)
public String putNamespacePrefix(String namespaceURI, String prefix)(Code)(Java Doc)
public void setBaseURI(String baseURI)(Code)(Java Doc)
public void setDefaultNamespacePrefix(String defaultPrefix)(Code)(Java Doc)
public void setIdAttributeNS(Element element, String namespaceURI, String localName)(Code)(Java Doc)
public void setKeySelector(KeySelector ks)(Code)(Java Doc)
public Object setProperty(String name, Object value)(Code)(Java Doc)
public void setURIDereferencer(URIDereferencer dereferencer)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.