Package io.ebean.event.changelog
Interface ChangeLogRegister
-
public interface ChangeLogRegister
Used to assign ChangeLogFilters to bean types.Ebean has a built in implementation that uses the ChangeLog annotation to build appropriate ChangeLogFilters but you can provide an implementation to use instead.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChangeLogFilter
getChangeFilter(Class<?> beanType)
For the given bean type return the Change log filter to use.
-
-
-
Method Detail
-
getChangeFilter
ChangeLogFilter getChangeFilter(Class<?> beanType)
For the given bean type return the Change log filter to use.This filter provides control over which persist request are included in the change log.
-
-