Class TreeXmlUnmarshaller
java.lang.Object
net.officefloor.plugin.xml.unmarshall.tree.TreeXmlUnmarshaller
- All Implemented Interfaces:
XmlUnmarshaller
Implementation of
XmlUnmarshaller that is
capable of unmarshalling a tree structure of objects from XML.- Author:
- Daniel Sagenschneider
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classHandler to load XML values onto target object. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected static final StringSeparator of the attribute and element name for loading.protected final TreeXmlUnmarshaller.HandlerImplHandler to load the XML to the target object.protected final SAXParserParses the XML. -
Constructor Summary
ConstructorsConstructorDescriptionTreeXmlUnmarshaller(XmlMappingMetaData metaData, TranslatorRegistry translatorRegistry, ReferencedXmlMappingRegistry referenceRegistry) Initiate with details to unmarshall the XML. -
Method Summary
Modifier and TypeMethodDescriptionvoidunmarshall(InputStream xml, Object target) Unmarshalls the input xml onto the input target object.
-
Field Details
-
ATTRIBUTE_SEPARATOR
Separator of the attribute and element name for loading.- See Also:
-
parser
Parses the XML. -
handler
Handler to load the XML to the target object.
-
-
Constructor Details
-
TreeXmlUnmarshaller
public TreeXmlUnmarshaller(XmlMappingMetaData metaData, TranslatorRegistry translatorRegistry, ReferencedXmlMappingRegistry referenceRegistry) throws XmlMarshallException Initiate with details to unmarshall the XML.- Parameters:
metaData- Meta-data of the mappings.translatorRegistry- Registry of translators.referenceRegistry- Registry of referencedXmlMappinginstances.- Throws:
XmlMarshallException- If fail to configure.
-
-
Method Details
-
unmarshall
Description copied from interface:XmlUnmarshallerUnmarshalls the input xml onto the input target object.- Specified by:
unmarshallin interfaceXmlUnmarshaller- Parameters:
xml- XML to unmarshall.target- Target object to load XML data onto.- Throws:
XmlMarshallException- Should fail to load XML data onto the target object.
-