public class AsExternalTypeSerializer extends TypeSerializerBase
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.
| Modifier and Type | Field and Description |
|---|---|
protected java.lang.String |
_typePropertyName |
_idResolver, _property| Constructor and Description |
|---|
AsExternalTypeSerializer(TypeIdResolver idRes,
BeanProperty property,
java.lang.String propName) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
_writePrefix(java.lang.Object value,
JsonGenerator jgen) |
protected void |
_writePrefix(java.lang.Object value,
JsonGenerator jgen,
java.lang.Class<?> type) |
protected void |
_writeSuffix(java.lang.Object value,
JsonGenerator jgen) |
java.lang.String |
getPropertyName()
Name of property that contains type information, if
property-based inclusion is used.
|
JsonTypeInfo.As |
getTypeInclusion()
Accessor for type information inclusion method
that serializer uses; indicates how type information
is embedded in resulting JSON.
|
void |
writeTypePrefixForArray(java.lang.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(java.lang.Object value,
JsonGenerator jgen,
java.lang.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 type
|
void |
writeTypePrefixForObject(java.lang.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(java.lang.Object value,
JsonGenerator jgen,
java.lang.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 type
|
void |
writeTypePrefixForScalar(java.lang.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(java.lang.Object value,
JsonGenerator jgen,
java.lang.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 type
|
void |
writeTypeSuffixForArray(java.lang.Object value,
JsonGenerator jgen)
Method called after value has been serialized, to close any scopes opened
by earlier matching call to
TypeSerializer.writeTypeSuffixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator). |
void |
writeTypeSuffixForObject(java.lang.Object value,
JsonGenerator jgen)
Method called after value has been serialized, to close any scopes opened
by earlier matching call to
TypeSerializer.writeTypePrefixForObject(java.lang.Object, org.codehaus.jackson.JsonGenerator). |
void |
writeTypeSuffixForScalar(java.lang.Object value,
JsonGenerator jgen)
Method called after value has been serialized, to close any scopes opened
by earlier matching call to
TypeSerializer.writeTypePrefixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator). |
getTypeIdResolverpublic AsExternalTypeSerializer(TypeIdResolver idRes, BeanProperty property, java.lang.String propName)
public java.lang.String getPropertyName()
TypeSerializergetPropertyName in class TypeSerializerBasepublic JsonTypeInfo.As getTypeInclusion()
TypeSerializergetTypeInclusion in class TypeSerializerBasepublic void writeTypePrefixForObject(java.lang.Object value,
JsonGenerator jgen)
throws java.io.IOException,
JsonProcessingException
TypeSerializerwriteTypePrefixForObject in class TypeSerializervalue - Value that will be serialized, for which type information is
to be writtenjgen - Generator to use for writing type informationjava.io.IOExceptionJsonProcessingExceptionpublic void writeTypePrefixForObject(java.lang.Object value,
JsonGenerator jgen,
java.lang.Class<?> type)
throws java.io.IOException,
JsonProcessingException
TypeSerializerwriteTypePrefixForObject in class TypeSerializerjava.io.IOExceptionJsonProcessingExceptionpublic void writeTypePrefixForArray(java.lang.Object value,
JsonGenerator jgen)
throws java.io.IOException,
JsonProcessingException
TypeSerializerwriteTypePrefixForArray in class TypeSerializervalue - Value that will be serialized, for which type information is
to be writtenjgen - Generator to use for writing type informationjava.io.IOExceptionJsonProcessingExceptionpublic void writeTypePrefixForArray(java.lang.Object value,
JsonGenerator jgen,
java.lang.Class<?> type)
throws java.io.IOException,
JsonProcessingException
TypeSerializerwriteTypePrefixForArray in class TypeSerializerjava.io.IOExceptionJsonProcessingExceptionpublic void writeTypePrefixForScalar(java.lang.Object value,
JsonGenerator jgen)
throws java.io.IOException,
JsonProcessingException
TypeSerializerwriteTypePrefixForScalar in class TypeSerializervalue - Value that will be serialized, for which type information is
to be writtenjgen - Generator to use for writing type informationjava.io.IOExceptionJsonProcessingExceptionpublic void writeTypePrefixForScalar(java.lang.Object value,
JsonGenerator jgen,
java.lang.Class<?> type)
throws java.io.IOException,
JsonProcessingException
TypeSerializerwriteTypePrefixForScalar in class TypeSerializerjava.io.IOExceptionJsonProcessingExceptionpublic void writeTypeSuffixForObject(java.lang.Object value,
JsonGenerator jgen)
throws java.io.IOException,
JsonProcessingException
TypeSerializerTypeSerializer.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.writeTypeSuffixForObject in class TypeSerializerjava.io.IOExceptionJsonProcessingExceptionpublic void writeTypeSuffixForArray(java.lang.Object value,
JsonGenerator jgen)
throws java.io.IOException,
JsonProcessingException
TypeSerializerTypeSerializer.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.writeTypeSuffixForArray in class TypeSerializerjava.io.IOExceptionJsonProcessingExceptionpublic void writeTypeSuffixForScalar(java.lang.Object value,
JsonGenerator jgen)
throws java.io.IOException,
JsonProcessingException
TypeSerializerTypeSerializer.writeTypePrefixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator).
Actual action to take may depend on various factors, but has to match with
action TypeSerializer.writeTypePrefixForScalar(java.lang.Object, org.codehaus.jackson.JsonGenerator) did (close array or object; or do nothing).writeTypeSuffixForScalar in class TypeSerializerjava.io.IOExceptionJsonProcessingExceptionprotected final void _writePrefix(java.lang.Object value,
JsonGenerator jgen)
throws java.io.IOException,
JsonProcessingException
java.io.IOExceptionJsonProcessingExceptionprotected final void _writePrefix(java.lang.Object value,
JsonGenerator jgen,
java.lang.Class<?> type)
throws java.io.IOException,
JsonProcessingException
java.io.IOExceptionJsonProcessingExceptionprotected final void _writeSuffix(java.lang.Object value,
JsonGenerator jgen)
throws java.io.IOException,
JsonProcessingException
java.io.IOExceptionJsonProcessingException