*/
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);
}
}