Package | Description |
---|---|
com.tangosol.coherence.rest.io |
Contains classes related to REST marshalling.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractMarshaller<T>
Abstract base class for built-in marshallers.
|
class |
BinaryMarshaller
A pass-through marshaller that simply converts HTTP entities into a
Binary and vice versa. |
class |
JacksonJsonMarshaller<T>
Jackson-based marshaller that marshals object to/from JSON.
|
class |
JaxbXmlMarshaller<T>
JAXB-based marshaller that marshals object to/from XML.
|
class |
JsonJacksonMarshaller<T>
Deprecated.
As of 12.2.1.0.0, replaced by
JacksonJsonMarshaller |
class |
KeyConverterAdapter
Marshaller that marshalls objects using a cache's key converter.
|
class |
StaticContentMarshaller
A pass-through marshaller that simply converts HTTP entities into a
StaticContent and vice versa. |
class |
StringMarshaller
Marshaller that marshalls String object.
|
class |
XmlJaxbMarshaller<T>
Deprecated.
As of 12.2.1.0.0, replaced by
JaxbXmlMarshaller |
Modifier and Type | Method and Description |
---|---|
protected Marshaller |
MarshallerRegistry.createDefaultMarshaller(Class clzRoot,
String sMediaType)
Create default marshaller for the specified class and media type.
|
protected Marshaller |
MarshallerRegistry.createMarshaller(Class<?> clzRoot,
String sMediaType,
Class<?> clzMarshaller)
Create marshaller instance.
|
Marshaller |
MarshallerRegistry.getMarshaller(Class clzRoot,
javax.ws.rs.core.MediaType mediaType)
Return the marshaller for the specified root class and media type.
|
Marshaller |
MarshallerRegistry.getMarshaller(Class clzRoot,
String sMediaType)
Return the marshaller for the specified root class and media type.
|
Modifier and Type | Method and Description |
---|---|
void |
MarshallerRegistry.registerMarshaller(Class clzRoot,
javax.ws.rs.core.MediaType mediaType,
Marshaller marshaller)
Register a marshaller for the specified root class and media type.
|
void |
MarshallerRegistry.registerMarshaller(Class clzRoot,
String sMediaType,
Marshaller marshaller)
Register a marshaller for the specified root class and media type.
|