mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
20 lines
359 B
Java
20 lines
359 B
Java
package io.ebeaninternal.server.querydefn;
|
|
|
|
import io.ebean.FetchGroup;
|
|
|
|
/**
|
|
* Service API of FetchGroup.
|
|
*/
|
|
public interface SpiFetchGroup<T> extends FetchGroup<T> {
|
|
|
|
/**
|
|
* Return the detail to use for query execution.
|
|
*/
|
|
OrmQueryDetail detail();
|
|
|
|
/**
|
|
* Return the underlying detail for copy purposes.
|
|
*/
|
|
OrmQueryDetail underlying();
|
|
}
|