|
Spring Web Services Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Marshaller | |
---|---|
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.support | Provides generic support classes for using Spring's O/X Mapping integration within various scenario's. |
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. |
org.springframework.ws.client.core.support | Convenient super class for application classes that need Web service access. |
org.springframework.ws.server.endpoint | Provides standard endpoint, and EndpointAdapter implementations. |
org.springframework.ws.server.endpoint.adapter | Provides miscellaneous EndpointAdapter implementations. |
org.springframework.ws.support | Provides general helper classes for Spring Web Services. |
Uses of Marshaller in org.springframework.oxm |
---|
Subinterfaces of Marshaller in org.springframework.oxm | |
---|---|
interface |
GenericMarshaller
Extension of the Marshaller interface that supports Java 5 generics. |
Classes in org.springframework.oxm that implement Marshaller | |
---|---|
class |
AbstractMarshaller
Abstract implementation of the Marshaller and Unmarshaller interface. |
Uses of Marshaller in org.springframework.oxm.castor |
---|
Classes in org.springframework.oxm.castor that implement Marshaller | |
---|---|
class |
CastorMarshaller
Implementation of the Marshaller interface for Castor. |
Uses of Marshaller in org.springframework.oxm.jaxb |
---|
Classes in org.springframework.oxm.jaxb that implement Marshaller | |
---|---|
class |
AbstractJaxbMarshaller
Abstract base class for implementations of the Marshaller and Unmarshaller interfaces that
use JAXB. |
class |
Jaxb1Marshaller
Implementation of the Marshaller interface for JAXB 1.0. |
class |
Jaxb2Marshaller
Implementation of the Marshaller interface for JAXB 2.0. |
Uses of Marshaller in org.springframework.oxm.jibx |
---|
Classes in org.springframework.oxm.jibx that implement Marshaller | |
---|---|
class |
JibxMarshaller
Implementation of the Marshaller and Unmarshaller interfaces for JiBX. |
Uses of Marshaller in org.springframework.oxm.mime |
---|
Subinterfaces of Marshaller in org.springframework.oxm.mime | |
---|---|
interface |
MimeMarshaller
Subinterface of Marshaller that can use MIME attachments to optimize storage of binary data. |
Uses of Marshaller in org.springframework.oxm.support |
---|
Methods in org.springframework.oxm.support that return Marshaller | |
---|---|
Marshaller |
MarshallingSource.getMarshaller()
Returns the Marshaller used by this MarshallingSource . |
Methods in org.springframework.oxm.support with parameters of type Marshaller | |
---|---|
protected BytesMessage |
MarshallingMessageConverter.marshalToBytesMessage(Object object,
Session session,
Marshaller marshaller)
Marshals the given object to a BytesMessage . |
protected Message |
MarshallingMessageConverter.marshalToMessage(Object object,
Session session,
Marshaller marshaller)
Template method that allows for custom message marshalling. |
protected TextMessage |
MarshallingMessageConverter.marshalToTextMessage(Object object,
Session session,
Marshaller marshaller)
Marshals the given object to a TextMessage . |
void |
MarshallingView.setMarshaller(Marshaller marshaller)
Sets the Marshaller to be used by this view. |
void |
MarshallingMessageConverter.setMarshaller(Marshaller marshaller)
Sets the Marshaller to be used by this message converter. |
Constructors in org.springframework.oxm.support with parameters of type Marshaller | |
---|---|
MarshallingMessageConverter(Marshaller marshaller)
Constructs a new MarshallingMessageConverter with the given Marshaller set. |
|
MarshallingMessageConverter(Marshaller marshaller,
Unmarshaller unmarshaller)
Creates a new MarshallingMessageConverter with the given marshaller and unmarshaller. |
|
MarshallingSource(Marshaller marshaller,
Object content)
Creates a new MarshallingSource with the given marshaller and content. |
|
MarshallingView(Marshaller marshaller)
Constructs a new MarshallingView with the given Marshaller set. |
Uses of Marshaller in org.springframework.oxm.xmlbeans |
---|
Classes in org.springframework.oxm.xmlbeans that implement Marshaller | |
---|---|
class |
XmlBeansMarshaller
Implementation of the Marshaller interface for XMLBeans. |
Uses of Marshaller in org.springframework.oxm.xstream |
---|
Classes in org.springframework.oxm.xstream that implement Marshaller | |
---|---|
class |
AnnotationXStreamMarshaller
Subclass of the XStreamMarshaller that supports JDK 1.5+ annotation metadata for aliases. |
class |
XStreamMarshaller
Implementation of the Marshaller interface for XStream. |
Uses of Marshaller in org.springframework.ws.client.core |
---|
Methods in org.springframework.ws.client.core that return Marshaller | |
---|---|
Marshaller |
WebServiceTemplate.getMarshaller()
Returns the marshaller for this template. |
Methods in org.springframework.ws.client.core with parameters of type Marshaller | |
---|---|
void |
WebServiceTemplate.setMarshaller(Marshaller marshaller)
Sets the marshaller for this template. |
Uses of Marshaller in org.springframework.ws.client.core.support |
---|
Methods in org.springframework.ws.client.core.support that return Marshaller | |
---|---|
Marshaller |
WebServiceGatewaySupport.getMarshaller()
Returns the Marshaller used by the gateway. |
Methods in org.springframework.ws.client.core.support with parameters of type Marshaller | |
---|---|
void |
WebServiceGatewaySupport.setMarshaller(Marshaller marshaller)
Sets the Marshaller used by the gateway. |
Uses of Marshaller in org.springframework.ws.server.endpoint |
---|
Methods in org.springframework.ws.server.endpoint that return Marshaller | |
---|---|
Marshaller |
AbstractMarshallingPayloadEndpoint.getMarshaller()
Returns the marshaller used for transforming objects into XML. |
Methods in org.springframework.ws.server.endpoint with parameters of type Marshaller | |
---|---|
void |
AbstractMarshallingPayloadEndpoint.setMarshaller(Marshaller marshaller)
Sets the marshaller used for transforming objects into XML. |
Constructors in org.springframework.ws.server.endpoint with parameters of type Marshaller | |
---|---|
AbstractMarshallingPayloadEndpoint(Marshaller marshaller)
Creates a new AbstractMarshallingPayloadEndpoint with the given marshaller. |
|
AbstractMarshallingPayloadEndpoint(Marshaller marshaller,
Unmarshaller unmarshaller)
Creates a new AbstractMarshallingPayloadEndpoint with the given marshaller and unmarshaller. |
Uses of Marshaller in org.springframework.ws.server.endpoint.adapter |
---|
Methods in org.springframework.ws.server.endpoint.adapter that return Marshaller | |
---|---|
Marshaller |
MarshallingMethodEndpointAdapter.getMarshaller()
Returns the marshaller used for transforming objects into XML. |
Methods in org.springframework.ws.server.endpoint.adapter with parameters of type Marshaller | |
---|---|
void |
MarshallingMethodEndpointAdapter.setMarshaller(Marshaller marshaller)
Sets the marshaller used for transforming objects into XML. |
Constructors in org.springframework.ws.server.endpoint.adapter with parameters of type Marshaller | |
---|---|
GenericMarshallingMethodEndpointAdapter(Marshaller marshaller)
Creates a new GenericMarshallingMethodEndpointAdapter with the given marshaller. |
|
GenericMarshallingMethodEndpointAdapter(Marshaller marshaller,
Unmarshaller unmarshaller)
Creates a new GenericMarshallingMethodEndpointAdapter with the given marshaller and unmarshaller. |
|
MarshallingMethodEndpointAdapter(Marshaller marshaller)
Creates a new MarshallingMethodEndpointAdapter with the given marshaller. |
|
MarshallingMethodEndpointAdapter(Marshaller marshaller,
Unmarshaller unmarshaller)
Creates a new MarshallingMethodEndpointAdapter with the given marshaller and unmarshaller. |
Uses of Marshaller in org.springframework.ws.support |
---|
Methods in org.springframework.ws.support with parameters of type Marshaller | |
---|---|
static void |
MarshallingUtils.marshal(Marshaller marshaller,
Object graph,
WebServiceMessage message)
Marshals the given object to the payload of the given message using the provided Marshaller . |
|
Spring Web Services Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |