mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Build fix: Relax tests now that Integer.MAX_VALUE is allowed for the row limit
- ALF-7167 (RINF 11) - CQ git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28750 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -72,7 +72,8 @@ public interface CannedQueryDAO
|
||||
* @param queryName the name of the query e.g. <b>select_userCount</b>
|
||||
* @param parameterObj the values to drive the selection (may be <tt>null</tt> if not required)
|
||||
* @param offset the number of results to skip
|
||||
* @param limit the maximum number of results to retrieve
|
||||
* @param limit the maximum number of results to retrieve or <code>Integer.MAX_VALUE</code>
|
||||
* for no limit
|
||||
* @return the list of results
|
||||
*/
|
||||
<R> List<R> executeQuery(
|
||||
@@ -87,7 +88,8 @@ public interface CannedQueryDAO
|
||||
* @param queryName the name of the query e.g. <b>select_userCount</b>
|
||||
* @param parameterObj the values to drive the selection (may be <tt>null</tt> if not required)
|
||||
* @param offset the number of results to skip
|
||||
* @param limit the maximum number of results to retrieve
|
||||
* @param limit the maximum number of results to retrieve or <code>Integer.MAX_VALUE</code>
|
||||
* for no limit
|
||||
* @return the list of results
|
||||
*/
|
||||
<R> void executeQuery(
|
||||
|
Reference in New Issue
Block a user