public class AuthenticatorUnmarshaller extends AbstractWSTrustObjectUnmarshaller {
/** {@inheritDoc} */
protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
throws UnmarshallingException {
Authenticator authenticator = (Authenticator) parentXMLObject;
if (childXMLObject instanceof CombinedHash) {
authenticator.setCombinedHash((CombinedHash) childXMLObject);
} else {
authenticator.getUnknownXMLObjects().add(childXMLObject);
}
}