Examples of IDPList


Examples of org.opensaml.saml2.core.IDPList

public class IDPListUnmarshaller extends AbstractSAMLObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentSAMLObject, XMLObject childSAMLObject)
            throws UnmarshallingException {
        IDPList list = (IDPList) parentSAMLObject;

        if (childSAMLObject instanceof IDPEntry) {
            list.getIDPEntrys().add((IDPEntry) childSAMLObject);
        } else if (childSAMLObject instanceof GetComplete) {
            list.setGetComplete((GetComplete) childSAMLObject);
        } else {
            super.processChildElement(parentSAMLObject, childSAMLObject);
        }
    }
View Full Code Here

Examples of org.opensaml.saml2.core.IDPList

    }

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentSAMLObject, XMLObject childSAMLObject)
            throws UnmarshallingException {
        IDPList list = (IDPList) parentSAMLObject;

        if (childSAMLObject instanceof IDPEntry)
            list.getIDPEntrys().add((IDPEntry) childSAMLObject);
        else if (childSAMLObject instanceof GetComplete)
            list.setGetComplete((GetComplete) childSAMLObject);
        else
            super.processChildElement(parentSAMLObject, childSAMLObject);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.