}
/** {@inheritDoc} */
protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
throws UnmarshallingException {
ResourceType resourceType = (ResourceType) parentXMLObject;
if(childXMLObject instanceof ResourceMatchType){
resourceType.getResourceMatches().add((ResourceMatchType)childXMLObject);
} else {
super.processChildElement(parentXMLObject, childXMLObject);
}
}