Class BeanPropertyWriter
- All Implemented Interfaces:
BeanProperty, Named, Serializable
- Direct Known Subclasses:
UnwrappingBeanPropertyWriter, VirtualBeanPropertyWriter
Note that current design tries to keep instances immutable (semi-functional style); mostly because these instances are exposed to application code and this is to reduce likelihood of data corruption and synchronization issues.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface BeanProperty
BeanProperty.Bogus, BeanProperty.Std -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected MethodAccessor method used to get property value, for method-accessible properties.protected final JavaTypeType to use for locating serializer; normally same as return type of the accessor method, but may be overridden by annotations.protected final AnnotationsAnnotations from context (most often, class that declares property, or in case of sub-class serializer, from that sub-class)protected final JavaTypeType property is declared to have, either in class definition or associated annotations.protected PropertySerializerMapIn case serializer is not known statically (i.e.protected FieldField that contains the property value for field-accessible properties.protected final Class<?>[]Alternate set of property writers used when view-based filtering is available for the Bean.protected final AnnotatedMemberMember (field, method) that represents property and allows access to associated annotations.protected final com.fasterxml.jackson.core.io.SerializedStringLogical name of the property; will be used as the field name under which value for the property is written.protected JavaTypeBase type of the property, if the declared type is "non-trivial"; meaning it is either a structured type (collection, map, array), or parameterized.protected JsonSerializer<Object> Serializer used for writing out null values, if any: if null, null values are to be suppressed.protected JsonSerializer<Object> Serializer to use for writing out the value: null if it cannot be known statically; non-null if it can.protected final ObjectValue that is considered default value of the property; used for default-value-suppression if enabled.protected final booleanWhether null values are to be suppressed (nothing written out if value is null) or not.protected TypeSerializerIf property being serialized needs type information to be included this is the type serializer to use.protected final PropertyNameWrapper name to use for this element, if anystatic final ObjectMarker object used to indicate "do not serialize if empty"Fields inherited from class ConcreteBeanPropertyBase
_aliases, _metadataFields inherited from interface BeanProperty
EMPTY_FORMAT, EMPTY_INCLUDE -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructor that may be of use to virtual properties, when there is need for the zero-arg ("default") constructor, and actual initialization is done after constructor call.BeanPropertyWriter(BeanPropertyDefinition propDef, AnnotatedMember member, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, boolean suppressNulls, Object suppressableValue) Deprecated.BeanPropertyWriter(BeanPropertyDefinition propDef, AnnotatedMember member, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, boolean suppressNulls, Object suppressableValue, Class<?>[] includeInViews) protected"Copy constructor" to be used by filtering sub-classesprotectedBeanPropertyWriter(BeanPropertyWriter base, com.fasterxml.jackson.core.io.SerializedString name) protectedBeanPropertyWriter(BeanPropertyWriter base, PropertyName name) -
Method Summary
Modifier and TypeMethodDescriptionprotected void_depositSchemaProperty(ObjectNode propertiesNode, JsonNode schemaNode) protected JsonSerializer<Object> _findAndAddDynamic(PropertySerializerMap map, Class<?> type, SerializerProvider provider) protected boolean_handleSelfReference(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider prov, JsonSerializer<?> ser) Method called to handle a direct self-reference through this property.protected BeanPropertyWriter_new(PropertyName newName) Overridable factory method used by sub-classesvoidassignNullSerializer(JsonSerializer<Object> nullSer) Method called to assign null value serializer for propertyvoidMethod called to assign value serializer for propertyvoidassignTypeSerializer(TypeSerializer typeSer) Method called to set, reset or clear the configured type serializer for property.voidTraversal method used for things like JSON Schema generation, or POJO introspection.voiddepositSchemaProperty(ObjectNode propertiesNode, SerializerProvider provider) Deprecated.voidfixAccess(SerializationConfig config) Method called to ensure that the mutator has proper access rights to be called, as per configuration.final ObjectMethod that can be used to access value of the property this Object describes, from given bean instance.<A extends Annotation>
AgetAnnotation(Class<A> acls) Method for accessing annotations directly declared for property that this writer is associated with.<A extends Annotation>
AgetContextAnnotation(Class<A> acls) Method for accessing annotations declared in context of the property that this writer is associated with; usually this means annotations on enclosing class for property.Method for getting full name definition, including possible format-specific additional properties (such as namespace when using XML backend).Deprecated.getInternalSetting(Object key) Method for accessing value of specified internal setting.Method for accessing primary physical entity that represents the property; annotated field, method or constructor property.getName()Method to get logical name of the propertyClass<?> Deprecated.Since 2.7, to be removed from 2.9, usegetType()instead.Class<?> Deprecated.com.fasterxml.jackson.core.SerializableStringgetType()Method to get declared type of the property.Class<?>[]getViews()If property is indicated to be wrapped, name of wrapper element to use.booleanbooleanbooleanAccessor that will return true if this bean property has to support "unwrapping"; ability to replace POJO structural wrapping with optional name prefix and/or suffix (or in some cases, just removal of wrapper name).Method for removing entry for specified internal setting.rename(NameTransformer transformer) voidserializeAsElement(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider prov) Alternative toserializeAsField(Object, JsonGenerator, SerializerProvider)that is used when a POJO is serialized as JSON Array; the difference is that no field names are written.voidserializeAsField(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider prov) Method called to access property that this bean stands for, from within given bean, and to serialize it as a JSON Object field using appropriate serializer.voidserializeAsOmittedField(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider prov) Method called to indicate that serialization of a field was omitted due to filtering, in cases where backend data format does not allow basic omission.voidserializeAsPlaceholder(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider prov) Method called to serialize a placeholder used in tabular output when real value is not to be included (is filtered out), but when we need an entry so that field indexes will not be off.setInternalSetting(Object key, Object value) Method for setting specific internal setting to given valuevoidMethod called to define type to consider as "non-trivial" basetype, needed for dynamic serialization resolution for complex (usually container) typestoString()unwrappingWriter(NameTransformer unwrapper) Method called create an instance that handles details of unwrapping contained value.booleanbooleanMethod called to check to see if this property has a name that would conflict with a given name.Methods inherited from class PropertyWriter
findAnnotationMethods inherited from class ConcreteBeanPropertyBase
findAliases, findFormatOverrides, findPropertyFormat, findPropertyInclusion, getMetadata, isRequired, isVirtual
-
Field Details
-
MARKER_FOR_EMPTY
Marker object used to indicate "do not serialize if empty" -
_name
protected final com.fasterxml.jackson.core.io.SerializedString _nameLogical name of the property; will be used as the field name under which value for the property is written.NOTE: do NOT change name of this field; it is accessed by Afterburner module (until 2.4; not directly from 2.5) ALSO NOTE: ... and while it really ought to be `SerializableString`, changing that is also binary-incompatible change. So nope.
-
_wrapperName
-
_declaredType
Type property is declared to have, either in class definition or associated annotations. -
_cfgSerializationType
Type to use for locating serializer; normally same as return type of the accessor method, but may be overridden by annotations. -
_nonTrivialBaseType
Base type of the property, if the declared type is "non-trivial"; meaning it is either a structured type (collection, map, array), or parameterized. Used to retain type information about contained type, which is mostly necessary if type meta-data is to be included. -
_contextAnnotations
Annotations from context (most often, class that declares property, or in case of sub-class serializer, from that sub-class)NOTE: transient just to support JDK serializability; Annotations do not serialize. At all.
-
_member
Member (field, method) that represents property and allows access to associated annotations. -
_accessorMethod
-
_field
Field that contains the property value for field-accessible properties. Null if and only if_accessorMethodis null.`transient` (and non-final) only to support JDK serializability.
-
_serializer
Serializer to use for writing out the value: null if it cannot be known statically; non-null if it can. -
_nullSerializer
Serializer used for writing out null values, if any: if null, null values are to be suppressed. -
_typeSerializer
If property being serialized needs type information to be included this is the type serializer to use. Declared type (possibly augmented with annotations) of property is used for determining exact mechanism to use (compared to actual runtime type used for serializing actual state). -
_dynamicSerializers
In case serializer is not known statically (i.e._serializeris null), we will use a lookup structure for storing dynamically resolved mapping from type(s) to serializer(s). -
_suppressNulls
protected final boolean _suppressNullsWhether null values are to be suppressed (nothing written out if value is null) or not. Note that this is a configuration value during construction, and actual handling relies on setting (or not) of_nullSerializer. -
_suppressableValue
Value that is considered default value of the property; used for default-value-suppression if enabled. -
_includeInViews
Alternate set of property writers used when view-based filtering is available for the Bean. -
_internalSettings
-
-
Constructor Details
-
BeanPropertyWriter
public BeanPropertyWriter(BeanPropertyDefinition propDef, AnnotatedMember member, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, boolean suppressNulls, Object suppressableValue, Class<?>[] includeInViews) - Since:
- 2.9 (added `includeInViews` since 2.8)
-
BeanPropertyWriter
@Deprecated public BeanPropertyWriter(BeanPropertyDefinition propDef, AnnotatedMember member, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, boolean suppressNulls, Object suppressableValue) Deprecated. -
BeanPropertyWriter
protected BeanPropertyWriter()Constructor that may be of use to virtual properties, when there is need for the zero-arg ("default") constructor, and actual initialization is done after constructor call.- Since:
- 2.5
-
BeanPropertyWriter
"Copy constructor" to be used by filtering sub-classes -
BeanPropertyWriter
- Since:
- 2.5
-
BeanPropertyWriter
protected BeanPropertyWriter(BeanPropertyWriter base, com.fasterxml.jackson.core.io.SerializedString name)
-
-
Method Details
-
rename
-
_new
Overridable factory method used by sub-classes- Since:
- 2.6
-
assignTypeSerializer
Method called to set, reset or clear the configured type serializer for property.- Since:
- 2.6
-
assignSerializer
Method called to assign value serializer for property -
assignNullSerializer
Method called to assign null value serializer for property -
unwrappingWriter
Method called create an instance that handles details of unwrapping contained value. -
setNonTrivialBaseType
Method called to define type to consider as "non-trivial" basetype, needed for dynamic serialization resolution for complex (usually container) types -
fixAccess
Method called to ensure that the mutator has proper access rights to be called, as per configuration. Overridden by implementations that have mutators that require access, fields and setters.- Since:
- 2.8.3
-
getName
Description copied from interface:BeanPropertyMethod to get logical name of the property- Specified by:
getNamein interfaceBeanProperty- Specified by:
getNamein interfaceNamed- Specified by:
getNamein classPropertyWriter
-
getFullName
Description copied from interface:BeanPropertyMethod for getting full name definition, including possible format-specific additional properties (such as namespace when using XML backend).- Specified by:
getFullNamein interfaceBeanProperty- Specified by:
getFullNamein classPropertyWriter
-
getType
Description copied from interface:BeanPropertyMethod to get declared type of the property.- Specified by:
getTypein interfaceBeanProperty
-
getWrapperName
Description copied from interface:BeanPropertyIf property is indicated to be wrapped, name of wrapper element to use.- Specified by:
getWrapperNamein interfaceBeanProperty
-
getAnnotation
Description copied from class:PropertyWriterMethod for accessing annotations directly declared for property that this writer is associated with.- Specified by:
getAnnotationin interfaceBeanProperty- Specified by:
getAnnotationin classPropertyWriter
-
getContextAnnotation
Description copied from class:PropertyWriterMethod for accessing annotations declared in context of the property that this writer is associated with; usually this means annotations on enclosing class for property.- Specified by:
getContextAnnotationin interfaceBeanProperty- Specified by:
getContextAnnotationin classPropertyWriter
-
getMember
Description copied from interface:BeanPropertyMethod for accessing primary physical entity that represents the property; annotated field, method or constructor property.- Specified by:
getMemberin interfaceBeanProperty
-
_depositSchemaProperty
-
getInternalSetting
-
setInternalSetting
-
removeInternalSetting
-
getSerializedName
public com.fasterxml.jackson.core.SerializableString getSerializedName() -
hasSerializer
public boolean hasSerializer() -
hasNullSerializer
public boolean hasNullSerializer() -
getTypeSerializer
- Since:
- 2.6
-
isUnwrapping
public boolean isUnwrapping()Accessor that will return true if this bean property has to support "unwrapping"; ability to replace POJO structural wrapping with optional name prefix and/or suffix (or in some cases, just removal of wrapper name).Default implementation simply returns false.
- Since:
- 2.3
-
willSuppressNulls
public boolean willSuppressNulls() -
wouldConflictWithName
Method called to check to see if this property has a name that would conflict with a given name.- Since:
- 2.6
-
getSerializer
-
getSerializationType
-
getRawSerializationType
Deprecated. -
getPropertyType
Deprecated.Since 2.7, to be removed from 2.9, usegetType()instead. -
getGenericPropertyType
Deprecated.Since 2.7, to be removed from 2.9, usegetType()instead.Get the generic property type of this property writer.- Returns:
- The property type, or null if not found.
-
getViews
-
serializeAsField
public void serializeAsField(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider prov) throws Exception Method called to access property that this bean stands for, from within given bean, and to serialize it as a JSON Object field using appropriate serializer.- Specified by:
serializeAsFieldin classPropertyWriter- Throws:
Exception
-
serializeAsOmittedField
public void serializeAsOmittedField(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider prov) throws Exception Method called to indicate that serialization of a field was omitted due to filtering, in cases where backend data format does not allow basic omission.- Specified by:
serializeAsOmittedFieldin classPropertyWriter- Throws:
Exception- Since:
- 2.3
-
serializeAsElement
public void serializeAsElement(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider prov) throws Exception Alternative toserializeAsField(Object, JsonGenerator, SerializerProvider)that is used when a POJO is serialized as JSON Array; the difference is that no field names are written.- Specified by:
serializeAsElementin classPropertyWriter- Throws:
Exception- Since:
- 2.3
-
serializeAsPlaceholder
public void serializeAsPlaceholder(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider prov) throws Exception Method called to serialize a placeholder used in tabular output when real value is not to be included (is filtered out), but when we need an entry so that field indexes will not be off. Typically this should output null or empty String, depending on datatype.- Specified by:
serializeAsPlaceholderin classPropertyWriter- Throws:
Exception- Since:
- 2.1
-
depositSchemaProperty
public void depositSchemaProperty(JsonObjectFormatVisitor v, SerializerProvider provider) throws JsonMappingException Description copied from class:PropertyWriterTraversal method used for things like JSON Schema generation, or POJO introspection.- Specified by:
depositSchemaPropertyin interfaceBeanProperty- Specified by:
depositSchemaPropertyin classPropertyWriter- Parameters:
v- Visitor to used as the callback handler- Throws:
JsonMappingException
-
depositSchemaProperty
@Deprecated public void depositSchemaProperty(ObjectNode propertiesNode, SerializerProvider provider) throws JsonMappingException Deprecated.Attempt to add the output of the givenBeanPropertyWriterin the givenObjectNode. Otherwise, add the default schemaJsonNodein place of the writer's output- Specified by:
depositSchemaPropertyin classPropertyWriter- Parameters:
propertiesNode- Node which the given property would exist withinprovider- Provider that can be used for accessing dynamic aspects of serialization processing- Throws:
JsonMappingException
-
_findAndAddDynamic
protected JsonSerializer<Object> _findAndAddDynamic(PropertySerializerMap map, Class<?> type, SerializerProvider provider) throws JsonMappingException - Throws:
JsonMappingException
-
get
Method that can be used to access value of the property this Object describes, from given bean instance.Note: method is final as it should not need to be overridden -- rather, calling method(s) (
serializeAsField(Object, JsonGenerator, SerializerProvider)) should be overridden to change the behavior- Throws:
Exception
-
_handleSelfReference
protected boolean _handleSelfReference(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider prov, JsonSerializer<?> ser) throws IOException Method called to handle a direct self-reference through this property. Method can choose to indicate an error by throwingJsonMappingException; fully handle serialization (and return true); or indicate that it should be serialized normally (return false).Default implementation will throw
JsonMappingExceptionifSerializationFeature.FAIL_ON_SELF_REFERENCESis enabled; or returnfalseif it is disabled.- Returns:
- True if method fully handled self-referential value; false if not
(caller is to handle it) or
JsonMappingExceptionif there is no way handle it - Throws:
IOException
-
toString
-
getType()instead.