}
/** {@inheritDoc} */
protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
throws UnmarshallingException {
RequestSecurityTokenResponseCollection rstrc = (RequestSecurityTokenResponseCollection) parentXMLObject;
if (childXMLObject instanceof RequestSecurityTokenResponse) {
rstrc.getRequestSecurityTokenResponses().add((RequestSecurityTokenResponse) childXMLObject);
} else {
super.processChildElement(parentXMLObject, childXMLObject);
}
}