| Package | Description |
|---|---|
| com.authlete.common.api |
The definition of Authlete API (
AuthleteApi) and the factory class (AuthleteApiFactory). |
| com.authlete.common.dto |
Requests to and responses from Authlete APIs and some data structures.
|
| Modifier and Type | Method and Description |
|---|---|
TokenListResponse |
AuthleteApi.getTokenList()
Get the list of access tokens that are associated with the
service
(= call Authlete's
/auth/token/get/list API). |
TokenListResponse |
AuthleteApi.getTokenList(int start,
int end)
Get the list of access tokens that are associated with the
service
(= call Authlete's
/auth/token/get/list API
with start and end parameters). |
TokenListResponse |
AuthleteApi.getTokenList(String clientIdentifier,
String subject)
Get the list of access tokens
(= call Authlete's
/auth/token/get/list API with
clientIdentifier and subject). |
TokenListResponse |
AuthleteApi.getTokenList(String clientIdentifier,
String subject,
int start,
int end)
Get the list of access tokens
(= call Authlete's
/auth/token/get/list API with clientIdentifier,
subject, start and end parameters). |
| Modifier and Type | Method and Description |
|---|---|
TokenListResponse |
TokenListResponse.setAccessTokens(AccessToken[] accessTokens)
Set the list of access tokens that match the query conditions.
|
TokenListResponse |
TokenListResponse.setClient(Client client)
Set the client information associated with the value of
'clientIdentifier'
parameter in the original request. |
TokenListResponse |
TokenListResponse.setEnd(int end)
Set the end index (exclusive) for the result set of the query.
|
TokenListResponse |
TokenListResponse.setStart(int start)
Set the start index (inclusive) for the result set of the query.
|
TokenListResponse |
TokenListResponse.setSubject(String subject)
Set the value of
'subject' parameter in the original request. |
TokenListResponse |
TokenListResponse.setTotalCount(int count)
Set the total count of access tokens.
|
Copyright © 2019. All rights reserved.