|
Spring Web Services Framework | |||||||||
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. |
org.springframework.ws.client.core | Core package of the Spring-WS client-side 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(Object graph,
Result result)
Marshals the object graph with the given root into the provided Result . |
void |
AbstractMarshaller.marshal(Object graph,
Result result)
Marshals the object graph with the given root into the provided javax.xml.transform.Result . |
protected abstract void |
AbstractMarshaller.marshalDomNode(Object graph,
Node node)
Abstract template method for marshalling the given object graph to a DOM Node . |
protected void |
AbstractMarshaller.marshalDomResult(Object graph,
DOMResult domResult)
Template method for handling DOMResult s. |
protected abstract void |
AbstractMarshaller.marshalOutputStream(Object graph,
OutputStream outputStream)
Abstract template method for marshalling the given object graph to a OutputStream . |
protected abstract void |
AbstractMarshaller.marshalSaxHandlers(Object graph,
ContentHandler contentHandler,
LexicalHandler lexicalHandler)
Abstract template method for marshalling the given object graph to a SAX ContentHandler . |
protected void |
AbstractMarshaller.marshalSaxResult(Object graph,
SAXResult saxResult)
Template method for handling SAXResult s. |
protected void |
AbstractMarshaller.marshalStaxResult(Object graph,
Result staxResult)
Template method for handling StaxResult s. |
protected void |
AbstractMarshaller.marshalStreamResult(Object graph,
StreamResult streamResult)
Template method for handling StreamResult s. |
protected abstract void |
AbstractMarshaller.marshalWriter(Object graph,
Writer writer)
Abstract template method for marshalling the given object graph to a Writer . |
protected abstract void |
AbstractMarshaller.marshalXmlEventWriter(Object graph,
XMLEventWriter eventWriter)
Abstract template method for marshalling the given object to a StAX XMLEventWriter . |
protected abstract void |
AbstractMarshaller.marshalXmlStreamWriter(Object graph,
XMLStreamWriter streamWriter)
Abstract template method for marshalling the given object to a StAX XMLStreamWriter . |
Object |
Unmarshaller.unmarshal(Source source)
Unmarshals the given Source into an object graph. |
Object |
AbstractMarshaller.unmarshal(Source source)
Unmarshals the given provided javax.xml.transform.Source into an object graph. |
protected abstract Object |
AbstractMarshaller.unmarshalDomNode(Node node)
Abstract template method for unmarshalling from a given DOM Node . |
protected Object |
AbstractMarshaller.unmarshalDomSource(DOMSource domSource)
Template method for handling DOMSource s. |
protected abstract Object |
AbstractMarshaller.unmarshalInputStream(InputStream inputStream)
Abstract template method for unmarshalling from a given InputStream . |
protected abstract Object |
AbstractMarshaller.unmarshalReader(Reader reader)
Abstract template method for unmarshalling from a given Reader . |
protected abstract Object |
AbstractMarshaller.unmarshalSaxReader(XMLReader xmlReader,
InputSource inputSource)
Abstract template method for unmarshalling using a given SAX XMLReader and
InputSource . |
protected Object |
AbstractMarshaller.unmarshalSaxSource(SAXSource saxSource)
Template method for handling SAXSource s. |
protected Object |
AbstractMarshaller.unmarshalStaxSource(Source staxSource)
Template method for handling StaxSource s. |
protected Object |
AbstractMarshaller.unmarshalStreamSource(StreamSource streamSource)
Template method for handling StreamSource s. |
protected abstract Object |
AbstractMarshaller.unmarshalXmlEventReader(XMLEventReader eventReader)
Abstract template method for unmarshalling from a given Stax XMLEventReader . |
protected abstract Object |
AbstractMarshaller.unmarshalXmlStreamReader(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(Object graph,
Node node)
|
protected void |
CastorMarshaller.marshalOutputStream(Object graph,
OutputStream outputStream)
|
protected void |
CastorMarshaller.marshalSaxHandlers(Object graph,
ContentHandler contentHandler,
LexicalHandler lexicalHandler)
|
protected void |
CastorMarshaller.marshalWriter(Object graph,
Writer writer)
|
protected void |
CastorMarshaller.marshalXmlEventWriter(Object graph,
XMLEventWriter eventWriter)
|
protected void |
CastorMarshaller.marshalXmlStreamWriter(Object graph,
XMLStreamWriter streamWriter)
|
protected Object |
CastorMarshaller.unmarshalDomNode(Node node)
|
protected Object |
CastorMarshaller.unmarshalInputStream(InputStream inputStream)
|
protected Object |
CastorMarshaller.unmarshalReader(Reader reader)
|
protected Object |
CastorMarshaller.unmarshalSaxReader(XMLReader xmlReader,
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(JAXBException ex)
Converts the given JAXBException to an appropriate exception from the
org.springframework.oxm hierarchy. |
protected XmlMappingException |
AbstractJaxbMarshaller.convertJaxbException(JAXBException ex)
Convert the given JAXBException to an appropriate exception from the
org.springframework.oxm hierarchy. |
Methods in org.springframework.oxm.jaxb that throw XmlMappingException | |
---|---|
void |
Jaxb2Marshaller.marshal(Object graph,
Result result)
|
void |
Jaxb2Marshaller.marshal(Object graph,
Result result,
MimeContainer mimeContainer)
|
Object |
Jaxb2Marshaller.unmarshal(Source source)
|
Object |
Jaxb2Marshaller.unmarshal(Source source,
MimeContainer mimeContainer)
|
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(JiBXException ex,
boolean marshalling)
Converts the given JiBXException to an appropriate exception from the
org.springframework.oxm hierarchy. |
XmlMappingException |
JibxMarshaller.convertJibxException(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(Object graph,
Node node)
|
protected void |
JibxMarshaller.marshalOutputStream(Object graph,
OutputStream outputStream)
|
protected void |
JibxMarshaller.marshalSaxHandlers(Object graph,
ContentHandler contentHandler,
LexicalHandler lexicalHandler)
|
protected void |
JibxMarshaller.marshalWriter(Object graph,
Writer writer)
|
protected void |
JibxMarshaller.marshalXmlStreamWriter(Object graph,
XMLStreamWriter streamWriter)
|
protected Object |
JibxMarshaller.unmarshalDomNode(Node node)
|
protected Object |
JibxMarshaller.unmarshalInputStream(InputStream inputStream)
|
protected Object |
JibxMarshaller.unmarshalReader(Reader reader)
|
protected Object |
JibxMarshaller.unmarshalSaxReader(XMLReader xmlReader,
InputSource inputSource)
|
Uses of XmlMappingException in org.springframework.oxm.mime |
---|
Methods in org.springframework.oxm.mime that throw XmlMappingException | |
---|---|
void |
MimeMarshaller.marshal(Object graph,
Result result,
MimeContainer mimeContainer)
Marshals the object graph with the given root into the provided Result , writing binary data to a MimeContainer . |
Object |
MimeUnmarshaller.unmarshal(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(Exception ex,
boolean marshalling)
Converts the given XMLBeans exception to an appropriate exception from the org.springframework.oxm
hierarchy. |
XmlMappingException |
XmlBeansMarshaller.convertXmlBeansException(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(Object graph,
Node node)
|
protected void |
XmlBeansMarshaller.marshalOutputStream(Object graph,
OutputStream outputStream)
|
protected void |
XmlBeansMarshaller.marshalSaxHandlers(Object graph,
ContentHandler contentHandler,
LexicalHandler lexicalHandler)
|
protected void |
XmlBeansMarshaller.marshalWriter(Object graph,
Writer writer)
|
protected void |
XmlBeansMarshaller.marshalXmlStreamWriter(Object graph,
XMLStreamWriter streamWriter)
|
protected Object |
XmlBeansMarshaller.unmarshalDomNode(Node node)
|
protected Object |
XmlBeansMarshaller.unmarshalInputStream(InputStream inputStream)
|
protected Object |
XmlBeansMarshaller.unmarshalReader(Reader reader)
|
protected Object |
XmlBeansMarshaller.unmarshalSaxReader(XMLReader xmlReader,
InputSource inputSource)
|
protected Object |
XmlBeansMarshaller.unmarshalXmlEventReader(XMLEventReader eventReader)
|
protected Object |
XmlBeansMarshaller.unmarshalXmlStreamReader(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(Exception ex,
boolean marshalling)
Converts the given XStream exception to an appropriate exception from the org.springframework.oxm
hierarchy. |
XmlMappingException |
XStreamMarshaller.convertXStreamException(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(Object graph,
Node node)
|
protected void |
XStreamMarshaller.marshalOutputStream(Object graph,
OutputStream outputStream)
|
protected void |
XStreamMarshaller.marshalSaxHandlers(Object graph,
ContentHandler contentHandler,
LexicalHandler lexicalHandler)
|
protected void |
XStreamMarshaller.marshalWriter(Object graph,
Writer writer)
|
protected void |
XStreamMarshaller.marshalXmlEventWriter(Object graph,
XMLEventWriter eventWriter)
|
protected void |
XStreamMarshaller.marshalXmlStreamWriter(Object graph,
XMLStreamWriter streamWriter)
|
protected Object |
XStreamMarshaller.unmarshalDomNode(Node node)
|
protected Object |
XStreamMarshaller.unmarshalInputStream(InputStream inputStream)
|
protected Object |
XStreamMarshaller.unmarshalReader(Reader reader)
|
protected Object |
XStreamMarshaller.unmarshalSaxReader(XMLReader xmlReader,
InputSource inputSource)
|
protected Object |
XStreamMarshaller.unmarshalXmlEventReader(XMLEventReader eventReader)
|
protected Object |
XStreamMarshaller.unmarshalXmlStreamReader(XMLStreamReader streamReader)
|
Uses of XmlMappingException in org.springframework.ws.client.core |
---|
Methods in org.springframework.ws.client.core that throw XmlMappingException | |
---|---|
Object |
WebServiceOperations.marshalSendAndReceive(Object requestPayload)
Sends a web service message that contains the given payload, marshalled by the configured Marshaller . |
Object |
WebServiceOperations.marshalSendAndReceive(Object requestPayload,
WebServiceMessageCallback requestCallback)
Sends a web service message that contains the given payload, marshalled by the configured Marshaller . |
Object |
WebServiceOperations.marshalSendAndReceive(String uri,
Object requestPayload)
Sends a web service message that contains the given payload, marshalled by the configured Marshaller . |
Object |
WebServiceOperations.marshalSendAndReceive(String uri,
Object requestPayload,
WebServiceMessageCallback requestCallback)
Sends a web service message that contains the given payload, marshalled by the configured Marshaller . |
|
Spring Web Services Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |