}
/** {@inheritDoc} */
protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
throws UnmarshallingException {
ResourceMatchType matchType = (ResourceMatchType) parentXMLObject;
if (childXMLObject instanceof AttributeValueType) {
matchType.setAttributeValue((AttributeValueType) childXMLObject);
} else if (childXMLObject instanceof AttributeSelectorType) {
matchType.setAttributeSelector((AttributeSelectorType) childXMLObject);
} else if (childXMLObject.getElementQName().equals(
AttributeDesignatorType.RESOURCE_ATTRIBUTE_DESIGNATOR_ELEMENT_NAME)) {
matchType.setResourceAttributeDesignator((AttributeDesignatorType) childXMLObject);
} else {
super.processChildElement(parentXMLObject, childXMLObject);
}
}