Uses of Class
org.opensaml.core.xml.io.UnmarshallingException
-
Packages that use UnmarshallingException Package Description org.opensaml.core.xml Base classes for working with XML as Java objects and configuring the library.org.opensaml.core.xml.io Interfaces and abstract implementations of marshallers and unmarshallers.org.opensaml.core.xml.schema.impl Implementations of the interfaces for XMLObjects that represent XML schema types.org.opensaml.core.xml.util Utility classes for working with XML, XMLObjects, and various data types. -
-
Uses of UnmarshallingException in org.opensaml.core.xml
Methods in org.opensaml.core.xml that throw UnmarshallingException Modifier and Type Method Description protected voidAbstractElementExtensibleXMLObjectUnmarshaller. processAttribute(XMLObject xmlObject, Attr attribute)Noxs:anyAttributeattribute.protected voidAbstractExtensibleXMLObjectUnmarshaller. processAttribute(XMLObject xmlObject, Attr attribute)Unmarshalls thexs:anyAttributeattributes.protected voidAbstractElementExtensibleXMLObjectUnmarshaller. processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)Unmarshalls all child elements in thexs:anylist. -
Uses of UnmarshallingException in org.opensaml.core.xml.io
Methods in org.opensaml.core.xml.io that throw UnmarshallingException Modifier and Type Method Description protected XMLObjectAbstractXMLObjectUnmarshaller. buildXMLObject(Element domElement)Constructs the XMLObject that the given DOM Element will be unmarshalled into.protected voidAbstractXMLObjectUnmarshaller. processAttribute(XMLObject xmlObject, Attr attribute)Called after an attribute has been unmarshalled so that it can be added to the XMLObject.protected voidAbstractXMLObjectUnmarshaller. processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)Called after a child element has been unmarshalled so that it can be added to the parent XMLObject.XMLObjectAbstractXMLObjectUnmarshaller. unmarshall(Element domElement)Unmarshalls the given W3C DOM element into a XMLObject.XMLObjectUnmarshaller. unmarshall(Element element)Unmarshalls the given W3C DOM element into a XMLObject.protected voidAbstractXMLObjectUnmarshaller. unmarshallAttribute(XMLObject xmlObject, Attr attribute)Unmarshalls the attributes from the given DOM Attr into the given XMLObject.protected voidAbstractXMLObjectUnmarshaller. unmarshallChildElement(XMLObject xmlObject, Element childElement)Unmarshalls given Element's children.protected voidAbstractXMLObjectUnmarshaller. unmarshallTextContent(XMLObject xmlObject, Text content)Unmarshalls the given Text node into a usable string by way ofCharacterData.getData()and passes it off toAbstractXMLObjectUnmarshaller.processElementContent(XMLObject, String)if the string is not null and contains something other than whitespace. -
Uses of UnmarshallingException in org.opensaml.core.xml.schema.impl
Methods in org.opensaml.core.xml.schema.impl that throw UnmarshallingException Modifier and Type Method Description protected voidXSAnyUnmarshaller. processAttribute(XMLObject xmlObject, Attr attribute)Called after an attribute has been unmarshalled so that it can be added to the XMLObject.protected voidXSAnyUnmarshaller. processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)Called after a child element has been unmarshalled so that it can be added to the parent XMLObject.protected voidXSQNameUnmarshaller. processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)Called after a child element has been unmarshalled so that it can be added to the parent XMLObject.protected voidXSQNameUnmarshaller. unmarshallTextContent(XMLObject xmlObject, Text content)Unmarshalls the given Text node into a usable string by way ofCharacterData.getData()and passes it off toAbstractXMLObjectUnmarshaller.processElementContent(XMLObject, String)if the string is not null and contains something other than whitespace. -
Uses of UnmarshallingException in org.opensaml.core.xml.util
Methods in org.opensaml.core.xml.util that throw UnmarshallingException Modifier and Type Method Description static <T extends XMLObject>
TXMLObjectSupport. cloneXMLObject(T originalXMLObject)Clone an XMLObject by brute force:static <T extends XMLObject>
TXMLObjectSupport. cloneXMLObject(T originalXMLObject, XMLObjectSupport.CloneOutputOption cloneOutputOption)Clone an XMLObject by brute force:static XMLObjectXMLObjectSupport. unmarshallFromInputStream(ParserPool parserPool, InputStream inputStream)Unmarshall a Document from an InputSteam.static XMLObjectXMLObjectSupport. unmarshallFromReader(ParserPool parserPool, Reader reader)Unmarshall a Document from a Reader.
-