Package org.opensaml.xml.signature

Examples of org.opensaml.xml.signature.SPKIData


public class SPKIDataUnmarshaller extends AbstractXMLSignatureUnmarshaller {

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
            throws UnmarshallingException {
        SPKIData spkiData = (SPKIData) parentXMLObject;

        // SPKIData contains an unbounded sequence of pairs of a single SPKISexp
        // and an optional, single wildcard <any> element. Let the Validator
        // catch invalid ordering/combinations.
        spkiData.getXMLObjects().add(childXMLObject);
    }
View Full Code Here


public class SPKIDataUnmarshaller extends AbstractXMLSignatureUnmarshaller {

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
            throws UnmarshallingException {
        SPKIData spkiData = (SPKIData) parentXMLObject;

        // SPKIData contains an unbounded sequence of pairs of a single SPKISexp
        // and an optional, single wildcard <any> element. Let the Validator
        // catch invalid ordering/combinations.
        spkiData.getXMLObjects().add(childXMLObject);
    }
View Full Code Here

TOP

Related Classes of org.opensaml.xml.signature.SPKIData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.