Package org.opensaml.core.xml.io
Interface Unmarshaller
-
- All Known Implementing Classes:
AbstractElementExtensibleXMLObjectUnmarshaller,AbstractExtensibleXMLObjectUnmarshaller,AbstractXMLObjectUnmarshaller,XSAnyUnmarshaller,XSBase64BinaryUnmarshaller,XSBooleanUnmarshaller,XSDateTimeUnmarshaller,XSIntegerUnmarshaller,XSQNameUnmarshaller,XSStringUnmarshaller,XSURIUnmarshaller
public interface UnmarshallerUnmarshallers are used to unmarshall a W3C DOM element into aXMLObject.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XMLObjectunmarshall(Element element)Unmarshalls the given W3C DOM element into a XMLObject.
-
-
-
Method Detail
-
unmarshall
@Nonnull XMLObject unmarshall(@Nonnull Element element) throws UnmarshallingException
Unmarshalls the given W3C DOM element into a XMLObject.- Parameters:
element- the DOM Element- Returns:
- the unmarshalled XMLObject
- Throws:
UnmarshallingException- thrown if an error occurs unmarshalling the DOM element into the XMLObject
-
-