@Retention(value=RUNTIME)
@Target(value={FIELD,METHOD})
public @interface Transient
Indicate that an attribute should not be serialized.
This annotation can be used directly on the field, or on its getter or setter method(s).
This is equivalent to declare the field with the transient modifier.