public interface AuthRecordDAO extends EntityObjectDAO<AuthRecord>
Modifier and Type | Method and Description |
---|---|
List<AuthRecord> |
findRecords(User user,
int startIndex,
int numRecords)
Finds a subset of the AuthRecords for a given user.
|
int |
findTotalRecords(User user)
Finds the total number of authentication records
that exist for a given user.
|
load, remove, update
List<AuthRecord> findRecords(User user, int startIndex, int numRecords)
user
- owner of the authentication records.startIndex
- the start index of the record set. A startIndex of 0 implies the first record.numRecords
- the maximum number of records to include in the set.int findTotalRecords(User user)
user
- owner of the authentication records.Copyright © 2021 Atlassian. All rights reserved.