Package org.opensaml.xacml.policy

Examples of org.opensaml.xacml.policy.CombinerParameterType


        super();
    }

    /** {@inheritDoc} */
    protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
        CombinerParameterType combinerParameterType = (CombinerParameterType) xmlObject;

        if (!DatatypeHelper.isEmpty(combinerParameterType.getParameterName())) {
            domElement.setAttribute(CombinerParameterType.PARAMETER_NAMEATTRIB_NAME,
                    combinerParameterType.getParameterName());
        }     
    }
View Full Code Here


    }

   
    /** {@inheritDoc} */
    protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
        CombinerParameterType combinerParameterType = (CombinerParameterType) xmlObject;
     
        if(attribute.getLocalName().equals(CombinerParameterType.PARAMETER_NAMEATTRIB_NAME)){
            combinerParameterType.setParameterName(DatatypeHelper.safeTrimOrNullString(attribute.getValue()));
        } else {
            super.processAttribute(xmlObject, attribute);
        }
    }
View Full Code Here

    }

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
            throws UnmarshallingException {
        CombinerParameterType combinerParameterType = (CombinerParameterType) parentXMLObject;
       
        if(childXMLObject instanceof AttributeValueType){
            combinerParameterType.setAttributeValue((AttributeValueType)childXMLObject);
        } else {
            super.processChildElement(parentXMLObject, childXMLObject);
        }
    }
View Full Code Here

TOP

Related Classes of org.opensaml.xacml.policy.CombinerParameterType

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.