- java.lang.Object
- 
- javax.xml.crypto.dom.DOMStructure
 
- 
- All Implemented Interfaces:
- XMLStructure
 
 public class DOMStructure extends Object implements XMLStructure A DOM-specificXMLStructure. The purpose of this class is to allow a DOM node to be used to represent extensible content (any elements or mixed content) in XML Signature structures.If a sequence of nodes is needed, the node contained in the DOMStructureis the first node of the sequence and successive nodes can be accessed by invokingNode.getNextSibling().If the owner document of the DOMStructureis different than the target document of anXMLSignature, theXMLSignature.sign(XMLSignContext)method imports the node into the target document before generating the signature.- Since:
- 1.6
 
- 
- 
Constructor SummaryConstructors Constructor Description DOMStructure(Node node)Creates aDOMStructurecontaining the specified node.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description NodegetNode()Returns the node contained in thisDOMStructure.booleanisFeatureSupported(String feature)Indicates whether a specified feature is supported.
 
- 
- 
- 
Constructor Detail- 
DOMStructurepublic DOMStructure(Node node) Creates aDOMStructurecontaining the specified node.- Parameters:
- node- the node
- Throws:
- NullPointerException- if- nodeis- null
 
 
- 
 - 
Method Detail- 
getNodepublic Node getNode() Returns the node contained in thisDOMStructure.- Returns:
- the node
 
 - 
isFeatureSupportedpublic boolean isFeatureSupported(String feature) Description copied from interface:XMLStructureIndicates whether a specified feature is supported.- Specified by:
- isFeatureSupportedin interface- XMLStructure
- Parameters:
- feature- the feature name (as an absolute URI)
- Returns:
- trueif the specified feature is supported,- falseotherwise
- Throws:
- NullPointerException- if- featureis- null
 
 
- 
 
-