Package io.ebean.annotation
Annotation Type Expose
-
@Retention(RUNTIME) @Target(FIELD) public @interface Expose
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description booleandeserializeIftrue, the field marked with this annotation is deserialized from the JSON.booleanserializeIftrue, the field marked with this annotation is written out in the JSON while serializing.
-
-
-
Element Detail
-
serialize
boolean serialize
Iftrue, the field marked with this annotation is written out in the JSON while serializing. Iffalse, the field marked with this annotation is skipped from the serialized output. Defaults totrue.- Default:
- true
-
-
-
deserialize
boolean deserialize
Iftrue, the field marked with this annotation is deserialized from the JSON. Iffalse, the field marked with this annotation is skipped during deserialization. Defaults totrue.- Default:
- true
-
-