io.ebeaninternal.server.query.CallableQueryIds 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;
import java.util.List;
import java.util.concurrent.Callable;
/**
* Represent the fetch Id's query as a Callable.
*
* @param the entity bean type
*/
public class CallableQueryIds extends CallableQuery implements Callable> {
public CallableQueryIds(SpiEbeanServer server, SpiQuery query, Transaction t) {
super(server, query, t);
}
/**
* Execute the find Id's query returning the list of Id's.
*/
@Override
public List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy