io.ebeaninternal.server.query.CallableQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.query;
import io.ebean.Transaction;
import io.ebeaninternal.api.SpiEbeanServer;
import io.ebeaninternal.api.SpiQuery;
/**
* Base object for making query execution into Callable's.
*
* @param the entity bean type
* @author rbygrave
*/
abstract class CallableQuery {
protected final SpiQuery query;
protected final SpiEbeanServer server;
protected final Transaction transaction;
CallableQuery(SpiEbeanServer server, SpiQuery query, Transaction t) {
this.server = server;
this.query = query;
this.transaction = t;
}
public SpiQuery getQuery() {
return query;
}
public Transaction getTransaction() {
return transaction;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy