Package com.kenshoo.pl.entity
Interface FetchFinalStep
-
public interface FetchFinalStep
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<CurrentEntityState>fetch()Finish building the query and fetch the results from the DBjava.util.List<CurrentEntityState>fetchByKeys(java.util.Collection<? extends Identifier<?>> keys)Finish building the query and fetch the results from the DB
-
-
-
Method Detail
-
fetch
java.util.List<CurrentEntityState> fetch()
Finish building the query and fetch the results from the DB- Returns:
- the result entities
-
fetchByKeys
java.util.List<CurrentEntityState> fetchByKeys(java.util.Collection<? extends Identifier<?>> keys)
Finish building the query and fetch the results from the DB- Parameters:
keys- the keys to fetch- Returns:
- the result entities
-
-