|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XmlMappingException | |
---|---|
org.springframework.oxm | Root package for Spring's O/X Mapping integration classes. |
org.springframework.oxm.castor | Package providing integration of Castor within Springs O/X Mapping support. |
org.springframework.oxm.jaxb | Package providing integration of JAXB with Springs O/X Mapping support. |
org.springframework.oxm.jibx | Package providing integration of JiBX with Springs O/X Mapping support. |
org.springframework.oxm.mime | Contains (un)marshallers optimized to store binary data in MIME attachments. |
org.springframework.oxm.xmlbeans | Package providing integration of XMLBeans with Springs O/X Mapping support. |
org.springframework.oxm.xstream | Package providing integration of XStream with Springs O/X Mapping support. |
Uses of XmlMappingException in org.springframework.oxm |
---|
Subclasses of XmlMappingException in org.springframework.oxm | |
---|---|
class |
GenericMarshallingFailureException
Base class for exception thrown when a marshalling or unmarshalling error occurs. |
class |
MarshallingFailureException
Exception thrown on marshalling failure. |
class |
UncategorizedXmlMappingException
Superclass for exceptions that cannot be distinguished further. |
class |
UnmarshallingFailureException
Exception thrown on unmarshalling failure. |
class |
ValidationFailureException
Exception thrown on marshalling validation failure. |
Methods in org.springframework.oxm that throw XmlMappingException | |
---|---|
void |
Marshaller.marshal(java.lang.Object graph,
javax.xml.transform.Result result)
Marshals the object graph with the given root into the provided Result . |
void |
AbstractMarshaller.marshal(java.lang.Object graph,
javax.xml.transform.Result result)
Marshals the object graph with the given root into the provided javax.xml.transform.Result . |
protected abstract void |
AbstractMarshaller.marshalDomNode(java.lang.Object graph,
org.w3c.dom.Node node)
Abstract template method for marshalling the given object graph to a DOM Node . |
protected void |
AbstractMarshaller.marshalDomResult(java.lang.Object graph,
javax.xml.transform.dom.DOMResult domResult)
Template method for handling DOMResult s. |
protected abstract void |
AbstractMarshaller.marshalOutputStream(java.lang.Object graph,
java.io.OutputStream outputStream)
Abstract template method for marshalling the given object graph to a OutputStream . |
protected abstract void |
AbstractMarshaller.marshalSaxHandlers(java.lang.Object graph,
org.xml.sax.ContentHandler contentHandler,
org.xml.sax.ext.LexicalHandler lexicalHandler)
Abstract template method for marshalling the given object graph to a SAX ContentHandler . |
protected void |
AbstractMarshaller.marshalSaxResult(java.lang.Object graph,
javax.xml.transform.sax.SAXResult saxResult)
Template method for handling SAXResult s. |
protected void |
AbstractMarshaller.marshalStaxResult(java.lang.Object graph,
org.springframework.xml.transform.StaxResult staxResult)
Template method for handling StaxResult s. |
protected void |
AbstractMarshaller.marshalStreamResult(java.lang.Object graph,
javax.xml.transform.stream.StreamResult streamResult)
Template method for handling StreamResult s. |
protected abstract void |
AbstractMarshaller.marshalWriter(java.lang.Object graph,
java.io.Writer writer)
Abstract template method for marshalling the given object graph to a Writer . |
protected abstract void |
AbstractMarshaller.marshalXmlEventWriter(java.lang.Object graph,
javax.xml.stream.XMLEventWriter eventWriter)
Abstract template method for marshalling the given object to a StAX XMLEventWriter . |
protected abstract void |
AbstractMarshaller.marshalXmlStreamWriter(java.lang.Object graph,
javax.xml.stream.XMLStreamWriter streamWriter)
Abstract template method for marshalling the given object to a StAX XMLStreamWriter . |
java.lang.Object |
Unmarshaller.unmarshal(javax.xml.transform.Source source)
Unmarshals the given Source into an object graph. |
java.lang.Object |
AbstractMarshaller.unmarshal(javax.xml.transform.Source source)
Unmarshals the given provided javax.xml.transform.Source into an object graph. |
protected abstract java.lang.Object |
AbstractMarshaller.unmarshalDomNode(org.w3c.dom.Node node)
Abstract template method for unmarshalling from a given DOM Node . |
protected java.lang.Object |
AbstractMarshaller.unmarshalDomSource(javax.xml.transform.dom.DOMSource domSource)
Template method for handling DOMSource s. |
protected abstract java.lang.Object |
AbstractMarshaller.unmarshalInputStream(java.io.InputStream inputStream)
Abstract template method for unmarshalling from a given InputStream . |
protected abstract java.lang.Object |
AbstractMarshaller.unmarshalReader(java.io.Reader reader)
Abstract template method for unmarshalling from a given Reader . |
protected abstract java.lang.Object |
AbstractMarshaller.unmarshalSaxReader(org.xml.sax.XMLReader xmlReader,
org.xml.sax.InputSource inputSource)
Abstract template method for unmarshalling using a given SAX XMLReader and
InputSource . |
protected java.lang.Object |
AbstractMarshaller.unmarshalSaxSource(javax.xml.transform.sax.SAXSource saxSource)
Template method for handling SAXSource s. |
protected java.lang.Object |
AbstractMarshaller.unmarshalStaxSource(org.springframework.xml.transform.StaxSource staxSource)
Template method for handling StaxSource s. |
protected java.lang.Object |
AbstractMarshaller.unmarshalStreamSource(javax.xml.transform.stream.StreamSource streamSource)
Template method for handling StreamSource s. |
protected abstract java.lang.Object |
AbstractMarshaller.unmarshalXmlEventReader(javax.xml.stream.XMLEventReader eventReader)
Abstract template method for unmarshalling from a given Stax XMLEventReader . |
protected abstract java.lang.Object |
AbstractMarshaller.unmarshalXmlStreamReader(javax.xml.stream.XMLStreamReader streamReader)
Abstract template method for unmarshalling from a given Stax XMLStreamReader . |
Uses of XmlMappingException in org.springframework.oxm.castor |
---|
Subclasses of XmlMappingException in org.springframework.oxm.castor | |
---|---|
class |
CastorMarshallingFailureException
Castor-specific subclass of MarshallingFailureException . |
class |
CastorSystemException
Castor-specific subclass of UncategorizedXmlMappingException , for Castor exceptions that cannot be
distinguished further. |
class |
CastorUnmarshallingFailureException
Castor-specific subclass of UnmarshallingFailureException . |
class |
CastorValidationFailureException
Castor-specific subclass of MarshallingFailureException . |
Methods in org.springframework.oxm.castor that return XmlMappingException | |
---|---|
XmlMappingException |
CastorMarshaller.convertCastorException(org.exolab.castor.xml.XMLException ex,
boolean marshalling)
Converts the given CastorException to an appropriate exception from the
org.springframework.oxm hierarchy. |
static XmlMappingException |
CastorUtils.convertXmlException(org.exolab.castor.xml.XMLException ex,
boolean marshalling)
Converts the given XMLException to an appropriate exception from the
org.springframework.oxm hierarchy. |
Methods in org.springframework.oxm.castor that throw XmlMappingException | |
---|---|
protected void |
CastorMarshaller.marshalDomNode(java.lang.Object graph,
org.w3c.dom.Node node)
|
protected void |
CastorMarshaller.marshalOutputStream(java.lang.Object graph,
java.io.OutputStream outputStream)
|
protected void |
CastorMarshaller.marshalSaxHandlers(java.lang.Object graph,
org.xml.sax.ContentHandler contentHandler,
org.xml.sax.ext.LexicalHandler lexicalHandler)
|
protected void |
CastorMarshaller.marshalWriter(java.lang.Object graph,
java.io.Writer writer)
|
protected void |
CastorMarshaller.marshalXmlEventWriter(java.lang.Object graph,
javax.xml.stream.XMLEventWriter eventWriter)
|
protected void |
CastorMarshaller.marshalXmlStreamWriter(java.lang.Object graph,
javax.xml.stream.XMLStreamWriter streamWriter)
|
protected java.lang.Object |
CastorMarshaller.unmarshalDomNode(org.w3c.dom.Node node)
|
protected java.lang.Object |
CastorMarshaller.unmarshalInputStream(java.io.InputStream inputStream)
|
protected java.lang.Object |
CastorMarshaller.unmarshalReader(java.io.Reader reader)
|
protected java.lang.Object |
CastorMarshaller.unmarshalSaxReader(org.xml.sax.XMLReader xmlReader,
org.xml.sax.InputSource inputSource)
|
Uses of XmlMappingException in org.springframework.oxm.jaxb |
---|
Subclasses of XmlMappingException in org.springframework.oxm.jaxb | |
---|---|
class |
JaxbMarshallingFailureException
JAXB-specific subclass of MarshallingFailureException . |
class |
JaxbSystemException
JAXB-specific subclass of UncategorizedXmlMappingException , for JAXBException s that cannot
be distinguished further. |
class |
JaxbUnmarshallingFailureException
JAXB-specific subclass of UnmarshallingFailureException . |
class |
JaxbValidationFailureException
JAXB-specific subclass of ValidationFailureException . |
Methods in org.springframework.oxm.jaxb that return XmlMappingException | |
---|---|
static XmlMappingException |
JaxbUtils.convertJaxbException(javax.xml.bind.JAXBException ex)
Converts the given JAXBException to an appropriate exception from the
org.springframework.oxm hierarchy. |
protected XmlMappingException |
AbstractJaxbMarshaller.convertJaxbException(javax.xml.bind.JAXBException ex)
Convert the given JAXBException to an appropriate exception from the
org.springframework.oxm hierarchy. |
Uses of XmlMappingException in org.springframework.oxm.jibx |
---|
Subclasses of XmlMappingException in org.springframework.oxm.jibx | |
---|---|
class |
JibxMarshallingFailureException
JiXB-specific subclass of MarshallingFailureException . |
class |
JibxSystemException
JiBX-specific subclass of UncategorizedXmlMappingException , for JiBXBException s that cannot
be distinguished further. |
class |
JibxUnmarshallingFailureException
JiXB-specific subclass of UnmarshallingFailureException . |
class |
JibxValidationFailureException
JAXB-specific subclass of ValidationFailureException . |
Methods in org.springframework.oxm.jibx that return XmlMappingException | |
---|---|
static XmlMappingException |
JibxUtils.convertJibxException(org.jibx.runtime.JiBXException ex,
boolean marshalling)
Converts the given JiBXException to an appropriate exception from the
org.springframework.oxm hierarchy. |
XmlMappingException |
JibxMarshaller.convertJibxException(org.jibx.runtime.JiBXException ex,
boolean marshalling)
Convert the given JiBXException to an appropriate exception from the
org.springframework.oxm hierarchy. |
Methods in org.springframework.oxm.jibx that throw XmlMappingException | |
---|---|
protected void |
JibxMarshaller.marshalDomNode(java.lang.Object graph,
org.w3c.dom.Node node)
|
protected void |
JibxMarshaller.marshalOutputStream(java.lang.Object graph,
java.io.OutputStream outputStream)
|
protected void |
JibxMarshaller.marshalSaxHandlers(java.lang.Object graph,
org.xml.sax.ContentHandler contentHandler,
org.xml.sax.ext.LexicalHandler lexicalHandler)
|
protected void |
JibxMarshaller.marshalWriter(java.lang.Object graph,
java.io.Writer writer)
|
protected void |
JibxMarshaller.marshalXmlStreamWriter(java.lang.Object graph,
javax.xml.stream.XMLStreamWriter streamWriter)
|
protected java.lang.Object |
JibxMarshaller.unmarshalDomNode(org.w3c.dom.Node node)
|
protected java.lang.Object |
JibxMarshaller.unmarshalInputStream(java.io.InputStream inputStream)
|
protected java.lang.Object |
JibxMarshaller.unmarshalReader(java.io.Reader reader)
|
protected java.lang.Object |
JibxMarshaller.unmarshalSaxReader(org.xml.sax.XMLReader xmlReader,
org.xml.sax.InputSource inputSource)
|
Uses of XmlMappingException in org.springframework.oxm.mime |
---|
Methods in org.springframework.oxm.mime that throw XmlMappingException | |
---|---|
void |
MimeMarshaller.marshal(java.lang.Object graph,
javax.xml.transform.Result result,
MimeContainer mimeContainer)
Marshals the object graph with the given root into the provided Result , writing binary data to a MimeContainer . |
java.lang.Object |
MimeUnmarshaller.unmarshal(javax.xml.transform.Source source,
MimeContainer mimeContainer)
Unmarshals the given provided Source into an object graph, reading binary attachments from a MimeContainer . |
Uses of XmlMappingException in org.springframework.oxm.xmlbeans |
---|
Subclasses of XmlMappingException in org.springframework.oxm.xmlbeans | |
---|---|
class |
XmlBeansMarshallingFailureException
XMLBeans-specific subclass of MarshallingFailureException . |
class |
XmlBeansSystemException
XMLBeans-specific subclass of UncategorizedXmlMappingException , for XMLBeans exceptions that cannot be
distinguished further. |
class |
XmlBeansUnmarshallingFailureException
XMLBeans-specific subclass of UnmarshallingFailureException . |
class |
XmlBeansValidationFailureException
XMLBeans-specific subclass of ValidationFailureException . |
Methods in org.springframework.oxm.xmlbeans that return XmlMappingException | |
---|---|
static XmlMappingException |
XmlBeansUtils.convertXmlBeansException(java.lang.Exception ex,
boolean marshalling)
Converts the given XMLBeans exception to an appropriate exception from the org.springframework.oxm
hierarchy. |
XmlMappingException |
XmlBeansMarshaller.convertXmlBeansException(java.lang.Exception ex,
boolean marshalling)
Converts the given XMLBeans exception to an appropriate exception from the org.springframework.oxm
hierarchy. |
Methods in org.springframework.oxm.xmlbeans that throw XmlMappingException | |
---|---|
protected void |
XmlBeansMarshaller.marshalDomNode(java.lang.Object graph,
org.w3c.dom.Node node)
|
protected void |
XmlBeansMarshaller.marshalOutputStream(java.lang.Object graph,
java.io.OutputStream outputStream)
|
protected void |
XmlBeansMarshaller.marshalSaxHandlers(java.lang.Object graph,
org.xml.sax.ContentHandler contentHandler,
org.xml.sax.ext.LexicalHandler lexicalHandler)
|
protected void |
XmlBeansMarshaller.marshalWriter(java.lang.Object graph,
java.io.Writer writer)
|
protected void |
XmlBeansMarshaller.marshalXmlStreamWriter(java.lang.Object graph,
javax.xml.stream.XMLStreamWriter streamWriter)
|
protected java.lang.Object |
XmlBeansMarshaller.unmarshalDomNode(org.w3c.dom.Node node)
|
protected java.lang.Object |
XmlBeansMarshaller.unmarshalInputStream(java.io.InputStream inputStream)
|
protected java.lang.Object |
XmlBeansMarshaller.unmarshalReader(java.io.Reader reader)
|
protected java.lang.Object |
XmlBeansMarshaller.unmarshalSaxReader(org.xml.sax.XMLReader xmlReader,
org.xml.sax.InputSource inputSource)
|
protected java.lang.Object |
XmlBeansMarshaller.unmarshalXmlEventReader(javax.xml.stream.XMLEventReader eventReader)
|
protected java.lang.Object |
XmlBeansMarshaller.unmarshalXmlStreamReader(javax.xml.stream.XMLStreamReader streamReader)
|
Uses of XmlMappingException in org.springframework.oxm.xstream |
---|
Subclasses of XmlMappingException in org.springframework.oxm.xstream | |
---|---|
class |
XStreamMarshallingFailureException
XStream-specific subclass of MarshallingFailureException . |
class |
XStreamSystemException
XStream-specific subclass of UncategorizedXmlMappingException , for XStream exceptions that cannot be
distinguished further. |
class |
XStreamUnmarshallingFailureException
XStream-specific subclass of UnmarshallingFailureException . |
Methods in org.springframework.oxm.xstream that return XmlMappingException | |
---|---|
static XmlMappingException |
XStreamUtils.convertXStreamException(java.lang.Exception ex,
boolean marshalling)
Converts the given XStream exception to an appropriate exception from the org.springframework.oxm
hierarchy. |
XmlMappingException |
XStreamMarshaller.convertXStreamException(java.lang.Exception ex,
boolean marshalling)
Convert the given XStream exception to an appropriate exception from the org.springframework.oxm
hierarchy. |
Methods in org.springframework.oxm.xstream that throw XmlMappingException | |
---|---|
protected void |
XStreamMarshaller.marshalDomNode(java.lang.Object graph,
org.w3c.dom.Node node)
|
protected void |
XStreamMarshaller.marshalOutputStream(java.lang.Object graph,
java.io.OutputStream outputStream)
|
protected void |
XStreamMarshaller.marshalSaxHandlers(java.lang.Object graph,
org.xml.sax.ContentHandler contentHandler,
org.xml.sax.ext.LexicalHandler lexicalHandler)
|
protected void |
XStreamMarshaller.marshalWriter(java.lang.Object graph,
java.io.Writer writer)
|
protected void |
XStreamMarshaller.marshalXmlEventWriter(java.lang.Object graph,
javax.xml.stream.XMLEventWriter eventWriter)
|
protected void |
XStreamMarshaller.marshalXmlStreamWriter(java.lang.Object graph,
javax.xml.stream.XMLStreamWriter streamWriter)
|
protected java.lang.Object |
XStreamMarshaller.unmarshalDomNode(org.w3c.dom.Node node)
|
protected java.lang.Object |
XStreamMarshaller.unmarshalInputStream(java.io.InputStream inputStream)
|
protected java.lang.Object |
XStreamMarshaller.unmarshalReader(java.io.Reader reader)
|
protected java.lang.Object |
XStreamMarshaller.unmarshalSaxReader(org.xml.sax.XMLReader xmlReader,
org.xml.sax.InputSource inputSource)
|
protected java.lang.Object |
XStreamMarshaller.unmarshalXmlEventReader(javax.xml.stream.XMLEventReader eventReader)
|
protected java.lang.Object |
XStreamMarshaller.unmarshalXmlStreamReader(javax.xml.stream.XMLStreamReader streamReader)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |