Examples of PolicySetCombinerParametersType


Examples of org.opensaml.xacml.policy.PolicySetCombinerParametersType

    }
   
    /** {@inheritDoc} */
    protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
        if(attribute.getLocalName().equals(PolicySetCombinerParametersType.POLICY_SET_ID_REF_ATTRIB_NAME)){
            PolicySetCombinerParametersType policySetCombinerParametersType =
                (PolicySetCombinerParametersType)xmlObject;
            policySetCombinerParametersType.setPolicySetIdRef(
                    DatatypeHelper.safeTrimOrNullString(attribute.getValue()));
        } else {
            super.processAttribute(xmlObject, attribute);
        }

View Full Code Here

Examples of org.opensaml.xacml.policy.PolicySetCombinerParametersType

        super();
    }
   
    /** {@inheritDoc} */
    protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
        PolicySetCombinerParametersType policySetCombinerParametersType = (PolicySetCombinerParametersType)xmlObject;
       
        if(!DatatypeHelper.isEmpty(policySetCombinerParametersType.getPolicySetIdRef())){
            domElement.setAttribute(PolicySetCombinerParametersType.POLICY_SET_ID_REF_ATTRIB_NAME,
                    policySetCombinerParametersType.getPolicySetIdRef());
        }  
        super.marshallAttributes(xmlObject, domElement);
    }
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.