com.avaje.ebean.delegate.InterceptFindSqlQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avaje-ebeanorm-mocker Show documentation
Show all versions of avaje-ebeanorm-mocker Show documentation
Ability to set a Mockito mock EbeanServer as 'default' EbeanServer
The newest version!
package com.avaje.ebean.delegate;
import com.avaje.ebean.QueryEachConsumer;
import com.avaje.ebean.QueryEachWhileConsumer;
import com.avaje.ebean.SqlQuery;
import com.avaje.ebean.SqlRow;
import com.avaje.ebean.Transaction;
import java.util.List;
/**
* Interception for SqlQuery.
*/
public interface InterceptFindSqlQuery {
List findList(SqlQuery query, Transaction transaction);
SqlRow findUnique(SqlQuery query, Transaction transaction);
void findEach(SqlQuery sqlQuery, QueryEachConsumer consumer, Transaction transaction);
void findEachWhile(SqlQuery sqlQuery, QueryEachWhileConsumer consumer, Transaction transaction);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy