Package jakarta.json.bind.annotation
Annotation Interface JsonbTypeSerializer
@JsonbAnnotation
@Retention(RUNTIME)
@Target({ANNOTATION_TYPE,TYPE,FIELD,METHOD})
public @interface JsonbTypeSerializer
Annotation provides way how to set custom JsonbSerializer to field or JavaBean property.
Usage
The @JsonbSerializer
annotation can be used with the following program elements:
- type
- field
- method
- Since:
- JSON Binding 1.0
-
Required Element Summary
Modifier and TypeRequired ElementDescriptionClass<? extends JsonbSerializer>
CustomJsonbSerializer
which provides custom mapping for given field or JavaBean property.
-
Element Details
-
value
Class<? extends JsonbSerializer> valueCustomJsonbSerializer
which provides custom mapping for given field or JavaBean property.- Returns:
- Serializaer to use.
-