Searched refs:xmlStructure (Results 1 - 5 of 5) sorted by relevance

/openjdk9/jdk/test/javax/xml/crypto/dsig/
H A DKeySelectors.java152 for (XMLStructure xmlStructure : keyInfo.getContent()) {
153 if (xmlStructure instanceof KeyValue) {
156 pk = ((KeyValue)xmlStructure).getPublicKey();
282 for (XMLStructure xmlStructure : keyInfo.getContent()) {
284 if (xmlStructure instanceof KeyName) {
285 String name = ((KeyName)xmlStructure).getName();
309 } else if (xmlStructure instanceof RetrievalMethod) {
312 RetrievalMethod rm = (RetrievalMethod) xmlStructure;
326 } else if (xmlStructure instanceof X509Data) {
327 List content = ((X509Data)xmlStructure)
[all...]
/openjdk9/jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMKeyInfoFactory.java124 public KeyInfo unmarshalKeyInfo(XMLStructure xmlStructure) argument
126 if (xmlStructure == null) {
127 throw new NullPointerException("xmlStructure cannot be null");
129 if (!(xmlStructure instanceof javax.xml.crypto.dom.DOMStructure)) {
130 throw new ClassCastException("xmlStructure must be of type DOMStructure");
133 ((javax.xml.crypto.dom.DOMStructure) xmlStructure).getNode();
143 ("xmlStructure does not contain a proper Node");
H A DDOMXMLSignatureFactory.java145 public XMLSignature unmarshalXMLSignature(XMLStructure xmlStructure) argument
148 if (xmlStructure == null) {
149 throw new NullPointerException("xmlStructure cannot be null");
151 if (!(xmlStructure instanceof javax.xml.crypto.dom.DOMStructure)) {
152 throw new ClassCastException("xmlStructure must be of type DOMStructure");
155 (((javax.xml.crypto.dom.DOMStructure) xmlStructure).getNode(),
/openjdk9/jdk/src/java.xml.crypto/share/classes/javax/xml/crypto/dsig/keyinfo/
H A DKeyInfoFactory.java553 * @param xmlStructure a mechanism-specific XML structure from which to
556 * @throws NullPointerException if <code>xmlStructure</code> is
558 * @throws ClassCastException if the type of <code>xmlStructure</code> is
563 public abstract KeyInfo unmarshalKeyInfo(XMLStructure xmlStructure) argument
/openjdk9/jdk/src/java.xml.crypto/share/classes/javax/xml/crypto/dsig/
H A DXMLSignatureFactory.java795 * @param xmlStructure a mechanism-specific XML structure from which to
798 * @throws NullPointerException if <code>xmlStructure</code> is
800 * @throws ClassCastException if the type of <code>xmlStructure</code> is
806 (XMLStructure xmlStructure) throws MarshalException;
805 unmarshalXMLSignature(XMLStructure xmlStructure) argument

Completed in 56 milliseconds