Package org.opensaml.xacml.profile.saml

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


*/
public class XACMLAuthzDecisionStatementTypeUnmarshaller extends AbstractSAMLObjectUnmarshaller {

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

        if (childObject instanceof RequestType) {
            xacmlauthzdecisionstatement.setRequest((RequestType) childObject);
        } else if (childObject instanceof ResponseType) {
            xacmlauthzdecisionstatement.setResponse((ResponseType) childObject);
        } else {
            super.processChildElement(parentObject, childObject);
        }
    }
View Full Code Here

TOP

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

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.