All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jpattern.orm.query.CustomFindQuery Maven / Gradle / Ivy

There is a newer version: 3.5.1
Show newest version
package com.jpattern.orm.query;

import com.jpattern.orm.exception.OrmException;

/**
 * 
 * @author Francesco Cina
 *
 * 07/lug/2011
 */
public interface CustomFindQuery extends OrmBaseFindQuery, ICustomQuery {

	/**
	 * Set the maximum number of rows to return in the query.
	 * @param maxRows
	 * @return
	 */
	@Override
	CustomFindQuery setMaxRows(int maxRows) throws OrmException;

	/**
	 * Set the query timeout for the query.
	 */
	@Override
	CustomFindQuery setQueryTimeout(int queryTimeout);

	/**
	 * 
	 * @param lockMode
	 * @return
	 */
	CustomFindQuery setLockMode(LockMode lockMode);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy