com.kenshoo.pl.entity.FetchWhereStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of persistence-layer Show documentation
Show all versions of persistence-layer Show documentation
A Java persistence layer based on JOOQ for high performance and business flow support.
package com.kenshoo.pl.entity;
public interface FetchWhereStep {
/**
* Apply the given condition to the query being built.
*
* @param plCondition the condition to apply, non-null
* @return the final step in which the query will be executed.
* @throws NullPointerException if the condition is null
*/
FetchFinalStep where(PLCondition plCondition);
}