Package io.micronaut.jackson.codec
Class JsonStreamMediaTypeCodec
java.lang.Object
io.micronaut.json.codec.MapperMediaTypeCodec
io.micronaut.jackson.codec.JacksonMediaTypeCodec
io.micronaut.jackson.codec.JsonMediaTypeCodec
io.micronaut.jackson.codec.JsonStreamMediaTypeCodec
- All Implemented Interfaces:
MediaTypeCodec
@Secondary
@Singleton
@Bean(typed={JsonStreamMediaTypeCodec.class,JacksonMediaTypeCodec.class})
@Deprecated(forRemoval=true,
since="4.7")
public class JsonStreamMediaTypeCodec
extends JsonMediaTypeCodec
Deprecated, for removal: This API element is subject to removal in a future version.
Replaced with message body writers / readers API
A codec for
MediaType.APPLICATION_JSON_STREAM
.
Note: will be replaced by JsonStreamMediaTypeCodec
in the future, but that class is
currently experimental.
- Since:
- 1.0
- Author:
- Graeme Rocher
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Deprecated, for removal: This API element is subject to removal in a future version.Fields inherited from class io.micronaut.jackson.codec.JacksonMediaTypeCodec
REGULAR_JSON_MEDIA_TYPE_CODEC_NAME
Fields inherited from class io.micronaut.json.codec.MapperMediaTypeCodec
applicationConfiguration, codecConfiguration, mediaType
-
Constructor Summary
ConstructorDescriptionJsonStreamMediaTypeCodec
(com.fasterxml.jackson.databind.ObjectMapper objectMapper, ApplicationConfiguration applicationConfiguration, @Nullable CodecConfiguration codecConfiguration) Deprecated, for removal: This API element is subject to removal in a future version.JsonStreamMediaTypeCodec
(BeanProvider<com.fasterxml.jackson.databind.ObjectMapper> objectMapper, ApplicationConfiguration applicationConfiguration, @Nullable CodecConfiguration codecConfiguration) Deprecated.JsonStreamMediaTypeCodec
(BeanProvider<JacksonDatabindMapper> jacksonDatabindMappers, @Nullable CodecConfiguration codecConfiguration, ApplicationConfiguration applicationConfiguration) Deprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Methods inherited from class io.micronaut.jackson.codec.JsonMediaTypeCodec
cloneWithFeatures
Methods inherited from class io.micronaut.jackson.codec.JacksonMediaTypeCodec
cloneWithFeatures, cloneWithMapper, decode, getObjectMapper
Methods inherited from class io.micronaut.json.codec.MapperMediaTypeCodec
cloneWithViewClass, decode, decode, decode, decode, decode, encode, encode, encode, encode, encode, encode, getJsonMapper, supportsType
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.micronaut.http.codec.MediaTypeCodec
decode, decode, decode, decode
-
Field Details
-
CONFIGURATION_QUALIFIER
Deprecated, for removal: This API element is subject to removal in a future version.- See Also:
-
-
Constructor Details
-
JsonStreamMediaTypeCodec
public JsonStreamMediaTypeCodec(com.fasterxml.jackson.databind.ObjectMapper objectMapper, ApplicationConfiguration applicationConfiguration, @Named("json-stream") @Nullable @Nullable CodecConfiguration codecConfiguration) Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
objectMapper
- To read/write JSONapplicationConfiguration
- The common application configurationscodecConfiguration
- The configuration for the codec
-
JsonStreamMediaTypeCodec
@Deprecated public JsonStreamMediaTypeCodec(BeanProvider<com.fasterxml.jackson.databind.ObjectMapper> objectMapper, ApplicationConfiguration applicationConfiguration, @Named("json-stream") @Nullable @Nullable CodecConfiguration codecConfiguration) Deprecated.- Parameters:
objectMapper
- To read/write JSONapplicationConfiguration
- The common application configurationscodecConfiguration
- The configuration for the codec
-
JsonStreamMediaTypeCodec
@Inject public JsonStreamMediaTypeCodec(BeanProvider<JacksonDatabindMapper> jacksonDatabindMappers, @Named("json-stream") @Nullable @Nullable CodecConfiguration codecConfiguration, ApplicationConfiguration applicationConfiguration) Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
jacksonDatabindMappers
- To read/write JSONcodecConfiguration
- The configuration for the codecapplicationConfiguration
- The common application configurations
-
-
Method Details
-
getMediaTypes
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
getMediaTypes
in interfaceMediaTypeCodec
- Overrides:
getMediaTypes
in classMapperMediaTypeCodec
- Returns:
- The media type of the codec
-