Searched defs:maxRecords (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DLogReadDBHandler.java71 private int maxRecords = 0; field in class:LogReadDBHandler
177 this.maxRecords = Integer.parseInt(maxRecordsStr);
181 "DBlogRecRead: maxRecords error (" + maxRecordsStr +
184 this.maxRecords = LogConstants.MAX_RECORDS_DEFAULT_INT;
284 if (numberOfRows > this.maxRecords) {
313 if (numberOfRows > this.maxRecords) {
314 rowsToAlloc = this.maxRecords;
324 // then we just have to get the "this.maxRecords" records.
331 if (numberOfRows > this.maxRecords) {
332 skipThisManyRecords = numberOfRows - this.maxRecords;
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/handlers/
H A DLogReadDBHandler.java71 private int maxRecords = 0; field in class:LogReadDBHandler
177 this.maxRecords = Integer.parseInt(maxRecordsStr);
181 "DBlogRecRead: maxRecords error (" + maxRecordsStr +
184 this.maxRecords = LogConstants.MAX_RECORDS_DEFAULT_INT;
284 if (numberOfRows > this.maxRecords) {
313 if (numberOfRows > this.maxRecords) {
314 rowsToAlloc = this.maxRecords;
324 // then we just have to get the "this.maxRecords" records.
331 if (numberOfRows > this.maxRecords) {
332 skipThisManyRecords = numberOfRows - this.maxRecords;
[all...]

Completed in 28 milliseconds