All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avaje.ebean.event.BeanFindController Maven / Gradle / Ivy

package com.avaje.ebean.event;

import com.avaje.ebean.bean.BeanCollection;

/**
 * Used to override the finding implementation for a bean.
 * 

* For beans that are not in a JDBC data source you can implement this handle * bean finding. For example, read a log file building each entry as a bean and * returning that. *

*

* There are a number of internal BeanFinders in Ebean to return meta data from * Ebean at runtime such as query execution statistics etc. See the beans in * com.avaje.ebean.meta and finders in com.avaje.ebean.server.meta. *

*/ public interface BeanFindController { /** * Return true if this BeanPersistController should be registered for events * on this entity type. */ boolean isRegisterFor(Class cls); /** * Return true if this controller should intercept and process this find request. * * Return false to allow the default behavior to process the request. */ boolean isInterceptFind(BeanQueryRequest request); /** * Find a bean using its id or unique predicate. */ T find(BeanQueryRequest request); /** * Return true if this controller should intercept and process this findMany request. * * Return false to allow the default behavior to process the request. */ boolean isInterceptFindMany(BeanQueryRequest request); /** * Return a List, Set or Map for the given find request. *

* Note the returning object is cast to a List Set or Map so you do need to * get the return type right. *

*/ BeanCollection findMany(BeanQueryRequest request); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy