Package org.opensaml.xacml.policy

Examples of org.opensaml.xacml.policy.DescriptionType


        super();
    }
   
    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlobject, Element domElement) throws MarshallingException {
        DescriptionType message = (DescriptionType) xmlobject;

        if (message.getValue() != null) {
            XMLHelper.appendTextContent(domElement, message.getValue());
        }
    }
View Full Code Here


        super();
    }

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject xmlObject, String elementContent) {
        DescriptionType description = (DescriptionType) xmlObject;
        description.setValue(elementContent);
    }
View Full Code Here

    private DescriptionTypeHelper() {}

    public static DescriptionType build(String value) {

        DescriptionType description = (DescriptionType) builderFactory.getBuilder(elementQName).buildObject(elementQName);

        description.setValue(value);

        return description;

    }
View Full Code Here

TOP

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

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.