com.jpattern.orm.query.find.CustomFindQuery Maven / Gradle / Ivy
package com.jpattern.orm.query.find;
import com.jpattern.orm.exception.OrmException;
/**
*
* @author Francesco Cina
*
* 07/lug/2011
*/
public interface CustomFindQuery extends CustomFindQueryCommon, CustomFindFrom {
/**
* Set the where clause.
* @return
*/
CustomFindWhere where() throws OrmException;
/**
* Set the order by clause.
* @return
*/
CustomFindOrderBy orderBy() throws OrmException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy