@JsonbAnnotation @Retention(value=RUNTIME) @Target(value={ANNOTATION_TYPE,TYPE,FIELD,METHOD,PARAMETER}) public @interface JsonbTypeDeserializer
Annotation provides way how to set custom JsonbDeserializer to field or JavaBean property.
Usage
The @JsonbDeserializer
annotation can be used with the following
program elements:
Modifier and Type | Required Element and Description |
---|---|
java.lang.Class<? extends JsonbDeserializer> |
value
Custom
JsonbDeserializer which provides custom mapping for given field or JavaBean property. |
public abstract java.lang.Class<? extends JsonbDeserializer> value
JsonbDeserializer
which provides custom mapping for given field or JavaBean property.