Uses of Interface
com.tangosol.coherence.rest.io.Marshaller
-
Packages that use Marshaller Package Description com.tangosol.coherence.rest.io Contains classes related to REST marshalling. -
-
Uses of Marshaller in com.tangosol.coherence.rest.io
Classes in com.tangosol.coherence.rest.io that implement Marshaller Modifier and Type Class Description class
AbstractMarshaller<T>
Abstract base class for built-in marshallers.class
BinaryMarshaller
A pass-through marshaller that simply converts HTTP entities into aBinary
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 byJacksonJsonMarshaller
class
KeyConverterAdapter
Marshaller that marshalls objects using a cache's key converter.class
StaticContentMarshaller
A pass-through marshaller that simply converts HTTP entities into aStaticContent
and vice versa.class
StringMarshaller
Marshaller that marshalls String object.class
XmlJaxbMarshaller<T>
Deprecated.As of 12.2.1.0.0, replaced byJaxbXmlMarshaller
Methods in com.tangosol.coherence.rest.io that return Marshaller Modifier and Type Method 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, String sMediaType)
Return the marshaller for the specified root class and media type.Marshaller
MarshallerRegistry. getMarshaller(Class clzRoot, javax.ws.rs.core.MediaType mediaType)
Return the marshaller for the specified root class and media type.Methods in com.tangosol.coherence.rest.io with parameters of type Marshaller Modifier and Type Method Description void
MarshallerRegistry. registerMarshaller(Class clzRoot, String sMediaType, Marshaller marshaller)
Register a marshaller for the specified root class and media type.void
MarshallerRegistry. registerMarshaller(Class clzRoot, javax.ws.rs.core.MediaType mediaType, Marshaller marshaller)
Register a marshaller for the specified root class and media type.
-