Uses of Class
com.fasterxml.jackson.jaxrs.base.ProviderBase
-
Packages that use ProviderBase Package Description com.fasterxml.jackson.jaxrs.base com.fasterxml.jackson.jaxrs.cbor Jackson-based JAX-RS provider that can automatically serialize and deserialize resources for Compact Binary Object Representation (CBOR) content type (MediaType).com.fasterxml.jackson.jaxrs.json Jackson-based JAX-RS provider that can automatically serialize and deserialize resources for JSON content type (MediaType).com.fasterxml.jackson.jaxrs.smile Jackson-based JAX-RS provider that can automatically serialize and deserialize resources for Smile content type.com.fasterxml.jackson.jaxrs.xml Jackson-based JAX-RS provider that can automatically serialize and deserialize resources for XML content type (MediaType).com.fasterxml.jackson.jaxrs.yaml Jackson-based JAX-RS provider that can automatically serialize and deserialize resources for YAML content type (MediaType). -
-
Uses of ProviderBase in com.fasterxml.jackson.jaxrs.base
Classes in com.fasterxml.jackson.jaxrs.base with type parameters of type ProviderBase Modifier and Type Class Description class
ProviderBase<THIS extends ProviderBase<THIS,MAPPER,EP_CONFIG,MAPPER_CONFIG>,MAPPER extends com.fasterxml.jackson.databind.ObjectMapper,EP_CONFIG extends EndpointConfigBase<EP_CONFIG>,MAPPER_CONFIG extends MapperConfiguratorBase<MAPPER_CONFIG,MAPPER>>
-
Uses of ProviderBase in com.fasterxml.jackson.jaxrs.cbor
Subclasses of ProviderBase in com.fasterxml.jackson.jaxrs.cbor Modifier and Type Class Description class
JacksonCBORProvider
Basic implementation of JAX-RS abstractions (MessageBodyReader
,MessageBodyWriter
) needed for binding CBOR ("application/cbor") content to and from Java Objects ("POJO"s).class
JacksonJaxbCBORProvider
JSON content type provider automatically configured to use both Jackson and JAXB annotations (in that order of priority). -
Uses of ProviderBase in com.fasterxml.jackson.jaxrs.json
Subclasses of ProviderBase in com.fasterxml.jackson.jaxrs.json Modifier and Type Class Description class
JacksonJaxbJsonProvider
JSON content type provider automatically configured to use both Jackson and JAXB annotations (in that order of priority).class
JacksonJsonProvider
Basic implementation of JAX-RS abstractions (MessageBodyReader
,MessageBodyWriter
) needed for binding JSON ("application/json") content to and from Java Objects ("POJO"s). -
Uses of ProviderBase in com.fasterxml.jackson.jaxrs.smile
Subclasses of ProviderBase in com.fasterxml.jackson.jaxrs.smile Modifier and Type Class Description class
JacksonJaxbSmileProvider
JSON content type provider automatically configured to use both Jackson and JAXB annotations (in that order of priority).class
JacksonSmileProvider
Basic implementation of JAX-RS abstractions (MessageBodyReader
,MessageBodyWriter
) needed for binding Smile ("application/x-jackson-smile") content to and from Java Objects ("POJO"s). -
Uses of ProviderBase in com.fasterxml.jackson.jaxrs.xml
Subclasses of ProviderBase in com.fasterxml.jackson.jaxrs.xml Modifier and Type Class Description class
JacksonJaxbXMLProvider
JSON content type provider automatically configured to use both Jackson and JAXB annotations (in that order of priority).class
JacksonXMLProvider
Basic implementation of JAX-RS abstractions (MessageBodyReader
,MessageBodyWriter
) needed for binding JSON ("application/json") content to and from Java Objects ("POJO"s). -
Uses of ProviderBase in com.fasterxml.jackson.jaxrs.yaml
Subclasses of ProviderBase in com.fasterxml.jackson.jaxrs.yaml Modifier and Type Class Description class
JacksonJaxbYAMLProvider
JSON content type provider automatically configured to use both Jackson and JAXB annotations (in that order of priority).class
JacksonYAMLProvider
Basic implementation of JAX-RS abstractions (MessageBodyReader
,MessageBodyWriter
) needed for binding JSON ("application/json") content to and from Java Objects ("POJO"s).
-