Uses of Interface
io.ebean.event.BeanQueryRequest
-
Packages that use BeanQueryRequest Package Description io.ebean.event Persist and Query Event Controllers and Listeners -
-
Uses of BeanQueryRequest in io.ebean.event
Methods in io.ebean.event with parameters of type BeanQueryRequest Modifier and Type Method Description <T> T
BeanFindController. find(BeanQueryRequest<T> request)
Find a bean using its id or unique predicate.<T> BeanCollection<T>
BeanFindController. findMany(BeanQueryRequest<T> request)
Return a List, Set or Map for the given find request.boolean
BeanFindController. isInterceptFind(BeanQueryRequest<?> request)
Return true if this controller should intercept and process this find request.boolean
BeanFindController. isInterceptFindMany(BeanQueryRequest<?> request)
Return true if this controller should intercept and process this findMany request.void
BeanQueryAdapter. preQuery(BeanQueryRequest<?> request)
Modify the associated query prior to it being executed.
-