Examples of Scoping


Examples of org.opensaml.saml2.core.Scoping

        super(namespaceURI, elementLocalName);
    }

    /** {@inheritDoc} */
    protected void processAttribute(XMLObject samlObject, Attr attribute) throws UnmarshallingException {
        Scoping scoping = (Scoping) samlObject;

        if (attribute.getLocalName().equals(Scoping.PROXY_COUNT_ATTRIB_NAME))
            scoping.setProxyCount(Integer.valueOf(attribute.getValue()));
        else
            super.processAttribute(samlObject, attribute);
    }
View Full Code Here

Examples of org.opensaml.saml2.core.Scoping

    }

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentSAMLObject, XMLObject childSAMLObject)
            throws UnmarshallingException {
        Scoping scoping = (Scoping) parentSAMLObject;
        if (childSAMLObject instanceof IDPList)
            scoping.setIDPList((IDPList) childSAMLObject);
        else if (childSAMLObject instanceof RequesterID)
            scoping.getRequesterIDs().add((RequesterID) 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.