Searched defs:xmlStructure (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/keyinfo/
H A DKeyInfoFactory.java510 * @param xmlStructure a mechanism-specific XML structure from which to
513 * @throws NullPointerException if <code>xmlStructure</code> is
515 * @throws ClassCastException if the type of <code>xmlStructure</code> is
520 public abstract KeyInfo unmarshalKeyInfo(XMLStructure xmlStructure) argument
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMKeyInfoFactory.java111 public KeyInfo unmarshalKeyInfo(XMLStructure xmlStructure) argument
113 if (xmlStructure == null) {
114 throw new NullPointerException("xmlStructure cannot be null");
117 ((javax.xml.crypto.dom.DOMStructure) xmlStructure).getNode();
127 ("xmlStructure does not contain a proper Node");
H A DDOMXMLSignatureFactory.java140 public XMLSignature unmarshalXMLSignature(XMLStructure xmlStructure) argument
143 if (xmlStructure == null) {
144 throw new NullPointerException("xmlStructure cannot be null");
147 (((javax.xml.crypto.dom.DOMStructure) xmlStructure).getNode(),
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DXMLSignatureFactory.java762 * @param xmlStructure a mechanism-specific XML structure from which to
765 * @throws NullPointerException if <code>xmlStructure</code> is
767 * @throws ClassCastException if the type of <code>xmlStructure</code> is
773 (XMLStructure xmlStructure) throws MarshalException;
772 unmarshalXMLSignature(XMLStructure xmlStructure) argument

Completed in 35 milliseconds