Snapshot (enum)
Whether the property is included if the domain object graph is serialized into a snapshot.
This also affects viewmodel serialization, when using the 'fallback' serialization strategy.
API
Snapshot.java
enum Snapshot {
INCLUDED (1)
EXCLUDED (2)
NOT_SPECIFIED (3)
}
1 | INCLUDED
Property is included in any snapshots. This is the fallback/default if not explicitly excluded. |
2 | EXCLUDED
Property is excluded from any snapshots. |
3 | NOT_SPECIFIED
Ignore the value provided by this annotation (meaning that the framework will keep searching, in meta annotations or superclasses/interfaces). |