public class AuthzDecisionQueryDescriptorTypeUnmarshaller extends QueryDescriptorTypeUnmarshaller {
/** {@inheritDoc} */
protected void processChildElement(XMLObject parentSAMLObject, XMLObject childSAMLObject)
throws UnmarshallingException {
AuthzDecisionQueryDescriptorType descriptor = (AuthzDecisionQueryDescriptorType) parentSAMLObject;
if (childSAMLObject instanceof ActionNamespace) {
descriptor.getActionNamespaces().add((ActionNamespace) childSAMLObject);
} else {
super.processChildElement(parentSAMLObject, childSAMLObject);
}
}