@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface Transient
Marks a method such that its field should not be stored within the entities
value store. This allows for scenarios when the you know that the value
of the field will be updated in an external process or perhaps the value
will be too large to be reasonably cached.
- Author:
- Daniel Spiewak