@Retention(value=RUNTIME)
@Target(value=FIELD)
public @interface SerdeKey
Example:
class MyObject {
@SerdeKey("uuid")
String objectUniqueId;
String withoutAnnotation;
}
Serialization to json:
{
"uuid" : "…",
"withoutAnnotation": "…"
}
| Modifier and Type | Required Element and Description |
|---|---|
java.lang.String |
value |