Package org.opensaml.soap.wsfed.impl
Class AppliesToUnmarshaller
- java.lang.Object
-
- org.opensaml.core.xml.io.AbstractXMLObjectUnmarshaller
-
- org.opensaml.soap.wsfed.impl.AppliesToUnmarshaller
-
- All Implemented Interfaces:
Unmarshaller
public class AppliesToUnmarshaller extends AbstractXMLObjectUnmarshaller
A thread-safe unmarshaller forAppliesToobjects.
-
-
Constructor Summary
Constructors Constructor Description AppliesToUnmarshaller()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidprocessAttribute(XMLObject fedObject, Attr attribute)Called after an attribute has been unmarshalled so that it can be added to the XMLObject.protected voidprocessChildElement(XMLObject parentFedObject, XMLObject childFedObject)Called after a child element has been unmarshalled so that it can be added to the parent XMLObject.protected voidprocessElementContent(XMLObject fedObject, String content)Called if the element being unmarshalled contained textual content so that it can be added to the XMLObject.-
Methods inherited from class org.opensaml.core.xml.io.AbstractXMLObjectUnmarshaller
buildXMLObject, checkIDAttribute, processUnknownAttribute, unmarshall, unmarshallAttribute, unmarshallChildElement, unmarshallNamespaceAttribute, unmarshallSchemaInstanceAttributes, unmarshallTextContent
-
-
-
-
Method Detail
-
processChildElement
protected void processChildElement(XMLObject parentFedObject, XMLObject childFedObject)
Called after a child element has been unmarshalled so that it can be added to the parent XMLObject. The default implementation of this method is a no-op.- Overrides:
processChildElementin classAbstractXMLObjectUnmarshaller- Parameters:
parentFedObject- the parent XMLObjectchildFedObject- the child XMLObject
-
processAttribute
protected void processAttribute(XMLObject fedObject, Attr attribute)
Called after an attribute has been unmarshalled so that it can be added to the XMLObject. The default implementation of this method is a no-op- Overrides:
processAttributein classAbstractXMLObjectUnmarshaller- Parameters:
fedObject- the XMLObjectattribute- the attribute
-
processElementContent
protected void processElementContent(XMLObject fedObject, String content)
Called if the element being unmarshalled contained textual content so that it can be added to the XMLObject. The default implementation of this method is a no-op- Overrides:
processElementContentin classAbstractXMLObjectUnmarshaller- Parameters:
fedObject- XMLObject the content will be given tocontent- the Element's content
-
-