Examples of CombinerParameterType


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

Examples of org.opensaml.xacml.policy.CombinerParameterType

    }

   
    /** {@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

Examples of org.opensaml.xacml.policy.CombinerParameterType

    }

    /** {@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
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.