Class AsExternalTypeSerializer
java.lang.Object
org.codehaus.jackson.map.TypeSerializer
org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
org.codehaus.jackson.map.jsontype.impl.AsExternalTypeSerializer
Type serializer that preferably embeds type information as an "external"
type property; embedded in enclosing JSON object.
Note that this serializer should only be used when value is being output
at JSON Object context; otherwise it can not work reliably, and will have
to revert operation similar to
AsPropertyTypeSerializer
.
Note that implementation of serialization is bit cumbersome as we must serialized external type id AFTER object; this because callback only occurs after field name has been written.
- Since:
- 1.9
-
Field Summary
FieldsFields inherited from class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
_idResolver, _property
-
Constructor Summary
ConstructorsConstructorDescriptionAsExternalTypeSerializer
(TypeIdResolver idRes, BeanProperty property, String propName) -
Method Summary
Modifier and TypeMethodDescriptionprotected final void
_writePrefix
(Object value, JsonGenerator jgen) protected final void
_writePrefix
(Object value, JsonGenerator jgen, Class<?> type) protected final void
_writeSuffix
(Object value, JsonGenerator jgen) Name of property that contains type information, if property-based inclusion is used.Accessor for type information inclusion method that serializer uses; indicates how type information is embedded in resulting JSON.void
writeTypePrefixForArray
(Object value, JsonGenerator jgen) Method called to write initial part of type information for given value, when it will be output as JSON Array value (not as JSON Object or scalar).void
writeTypePrefixForArray
(Object value, JsonGenerator jgen, Class<?> type) Alternative version of the prefix-for-array method, which is given actual type to use (instead of using exact type of the value); typically a super type of actual value typevoid
writeTypePrefixForObject
(Object value, JsonGenerator jgen) Method called to write initial part of type information for given value, when it will be output as JSON Object value (not as JSON Array or scalar).void
writeTypePrefixForObject
(Object value, JsonGenerator jgen, Class<?> type) Alternative version of the prefix-for-object method, which is given actual type to use (instead of using exact type of the value); typically a super type of actual value typevoid
writeTypePrefixForScalar
(Object value, JsonGenerator jgen) Method called to write initial part of type information for given value, when it will be output as scalar JSON value (not as JSON Object or Array).void
writeTypePrefixForScalar
(Object value, JsonGenerator jgen, Class<?> type) Alternative version of the prefix-for-scalar method, which is given actual type to use (instead of using exact type of the value); typically a super type of actual value typevoid
writeTypeSuffixForArray
(Object value, JsonGenerator jgen) Method called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.writeTypeSuffixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator)
.void
writeTypeSuffixForObject
(Object value, JsonGenerator jgen) Method called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.writeTypePrefixForObject(java.lang.Object, org.codehaus.jackson.JsonGenerator)
.void
writeTypeSuffixForScalar
(Object value, JsonGenerator jgen) Method called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.writeTypePrefixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator)
.Methods inherited from class org.codehaus.jackson.map.jsontype.impl.TypeSerializerBase
getTypeIdResolver
-
Field Details
-
_typePropertyName
-
-
Constructor Details
-
AsExternalTypeSerializer
-
-
Method Details
-
getPropertyName
Description copied from class:TypeSerializer
Name of property that contains type information, if property-based inclusion is used.- Overrides:
getPropertyName
in classTypeSerializerBase
-
getTypeInclusion
Description copied from class:TypeSerializer
Accessor for type information inclusion method that serializer uses; indicates how type information is embedded in resulting JSON.- Specified by:
getTypeInclusion
in classTypeSerializerBase
-
writeTypePrefixForObject
public void writeTypePrefixForObject(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException Description copied from class:TypeSerializer
Method called to write initial part of type information for given value, when it will be output as JSON Object value (not as JSON Array or scalar). This means that context after call must be JSON Object, meaning that caller can then proceed to output field entries.- Specified by:
writeTypePrefixForObject
in classTypeSerializer
- Parameters:
value
- Value that will be serialized, for which type information is to be writtenjgen
- Generator to use for writing type information- Throws:
IOException
JsonProcessingException
-
writeTypePrefixForObject
public void writeTypePrefixForObject(Object value, JsonGenerator jgen, Class<?> type) throws IOException, JsonProcessingException Description copied from class:TypeSerializer
Alternative version of the prefix-for-object method, which is given actual type to use (instead of using exact type of the value); typically a super type of actual value type- Overrides:
writeTypePrefixForObject
in classTypeSerializer
- Throws:
IOException
JsonProcessingException
-
writeTypePrefixForArray
public void writeTypePrefixForArray(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException Description copied from class:TypeSerializer
Method called to write initial part of type information for given value, when it will be output as JSON Array value (not as JSON Object or scalar). This means that context after call must be JSON Array, that is, there must be an open START_ARRAY to write contents in.- Specified by:
writeTypePrefixForArray
in classTypeSerializer
- Parameters:
value
- Value that will be serialized, for which type information is to be writtenjgen
- Generator to use for writing type information- Throws:
IOException
JsonProcessingException
-
writeTypePrefixForArray
public void writeTypePrefixForArray(Object value, JsonGenerator jgen, Class<?> type) throws IOException, JsonProcessingException Description copied from class:TypeSerializer
Alternative version of the prefix-for-array method, which is given actual type to use (instead of using exact type of the value); typically a super type of actual value type- Overrides:
writeTypePrefixForArray
in classTypeSerializer
- Throws:
IOException
JsonProcessingException
-
writeTypePrefixForScalar
public void writeTypePrefixForScalar(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException Description copied from class:TypeSerializer
Method called to write initial part of type information for given value, when it will be output as scalar JSON value (not as JSON Object or Array). This means that the context after call can not be that of JSON Object; it may be Array or root context.- Specified by:
writeTypePrefixForScalar
in classTypeSerializer
- Parameters:
value
- Value that will be serialized, for which type information is to be writtenjgen
- Generator to use for writing type information- Throws:
IOException
JsonProcessingException
-
writeTypePrefixForScalar
public void writeTypePrefixForScalar(Object value, JsonGenerator jgen, Class<?> type) throws IOException, JsonProcessingException Description copied from class:TypeSerializer
Alternative version of the prefix-for-scalar method, which is given actual type to use (instead of using exact type of the value); typically a super type of actual value type- Overrides:
writeTypePrefixForScalar
in classTypeSerializer
- Throws:
IOException
JsonProcessingException
-
writeTypeSuffixForObject
public void writeTypeSuffixForObject(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException Description copied from class:TypeSerializer
Method called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.writeTypePrefixForObject(java.lang.Object, org.codehaus.jackson.JsonGenerator)
. It needs to write closing END_OBJECT marker, and any other decoration that needs to be matched.- Specified by:
writeTypeSuffixForObject
in classTypeSerializer
- Throws:
IOException
JsonProcessingException
-
writeTypeSuffixForArray
public void writeTypeSuffixForArray(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException Description copied from class:TypeSerializer
Method called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.writeTypeSuffixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator)
. It needs to write closing END_ARRAY marker, and any other decoration that needs to be matched.- Specified by:
writeTypeSuffixForArray
in classTypeSerializer
- Throws:
IOException
JsonProcessingException
-
writeTypeSuffixForScalar
public void writeTypeSuffixForScalar(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException Description copied from class:TypeSerializer
Method called after value has been serialized, to close any scopes opened by earlier matching call toTypeSerializer.writeTypePrefixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator)
. Actual action to take may depend on various factors, but has to match with actionTypeSerializer.writeTypePrefixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator)
did (close array or object; or do nothing).- Specified by:
writeTypeSuffixForScalar
in classTypeSerializer
- Throws:
IOException
JsonProcessingException
-
_writePrefix
protected final void _writePrefix(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException - Throws:
IOException
JsonProcessingException
-
_writePrefix
protected final void _writePrefix(Object value, JsonGenerator jgen, Class<?> type) throws IOException, JsonProcessingException - Throws:
IOException
JsonProcessingException
-
_writeSuffix
protected final void _writeSuffix(Object value, JsonGenerator jgen) throws IOException, JsonProcessingException - Throws:
IOException
JsonProcessingException
-