Further to MNT-16375: Updated API to reflect requirement to have a 'maxResults' parameter.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@131887 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2016-10-31 11:52:37 +00:00
parent 26812efe29
commit 308da0f956
3 changed files with 11 additions and 6 deletions

View File

@@ -30,7 +30,7 @@ import java.net.URL;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.alfresco.service.cmr.audit.AuditService.AuditQueryCallback;
import org.alfresco.service.cmr.repository.ContentData;
import org.alfresco.util.Pair;
@@ -203,8 +203,9 @@ public interface AuditDAO
*
* @param callback the data callback per entry
* @param parameters the parameters for the query (may not be <tt>null</tt>)
* @param maxResults the maximum number of results to retrieve. Must be greater than 0.
* @throws IllegalArgumentException if maxResults < 1.
* @param maxResults the maximum number of results to retrieve (must be greater than 0)
*
* @throws IllegalArgumentException if maxResults less or equal to zero
*/
void findAuditEntries(
AuditQueryCallback callback,