Package org.opensaml.xacml.profile.saml

Examples of org.opensaml.xacml.profile.saml.ReferencedPoliciesType


*/
public class ReferencedPoliciesTypeUnmarshaller extends AbstractSAMLObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentObject, XMLObject childObject) throws UnmarshallingException {
        ReferencedPoliciesType referencedpoliciesType = (ReferencedPoliciesType) parentObject;

        if (childObject instanceof PolicyType) {
            referencedpoliciesType.getPolicies().add((PolicyType) childObject);
        } else if (childObject instanceof PolicySetType) {
            referencedpoliciesType.getPolicySets().add((PolicySetType) childObject);
        }
    }
View Full Code Here

TOP

Related Classes of org.opensaml.xacml.profile.saml.ReferencedPoliciesType

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.