Package io.ebean.annotation
Annotation Type ChangeLog
-
@Target(TYPE) @Retention(RUNTIME) public @interface ChangeLog
Marks an entity bean as being included in the change logging.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description ChangeLogInsertModeinsertsSpecify if inserts should be explicitly Included or Excluded.String[]updatesThatIncludeWhen specified only include update requests that have at least one of the given properties as a dirty property.
-
-
-
Element Detail
-
inserts
ChangeLogInsertMode inserts
Specify if inserts should be explicitly Included or Excluded.If not defined explicitly then the server default behaviour defined on ServerConfig is used.
- Default:
- io.ebean.annotation.ChangeLogInsertMode.DEFAULT
-
-
-
updatesThatInclude
String[] updatesThatInclude
When specified only include update requests that have at least one of the given properties as a dirty property.This provides a way to filter requests to include in the change log such that only updates that include at least one of the given properties is included in the change log.
- Default:
- {}
-
-