| 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 |
|---|---|
ClientListResponse |
AuthleteApi.getClientList()
Get the list of client applications that belong to the service
(= call Authlete's
/client/get/list API). |
ClientListResponse |
AuthleteApi.getClientList(int start,
int end)
Get the list of client applications that belong to the service
(= call Authlete's
/client/get/list API with start and end parameters). |
ClientListResponse |
AuthleteApi.getClientList(String developer)
Get the list of client applications that belong to the developer
(= call Authlete's
/client/get/list API with developer parameter). |
ClientListResponse |
AuthleteApi.getClientList(String developer,
int start,
int end)
Get the list of client applications
(= call Authlete's
/client/get/list API with developer, start and end parameters). |
| Modifier and Type | Class and Description |
|---|---|
class |
AuthorizedClientListResponse
Response from Authlete's
/client/authorization/get/list API. |
| Modifier and Type | Method and Description |
|---|---|
ClientListResponse |
ClientListResponse.setClients(Client[] clients)
Set the list of clients that match the query conditions.
|
ClientListResponse |
ClientListResponse.setDeveloper(String developer)
Set the developer.
|
ClientListResponse |
ClientListResponse.setEnd(int end)
Set the end index (exclusive) for the result set of the query.
|
ClientListResponse |
ClientListResponse.setStart(int start)
Set the start index (inclusive) for the result set of the query.
|
ClientListResponse |
ClientListResponse.setTotalCount(int count)
Set the total count of client applications either of the
service (when
developer is null) or of
the developer (when developer is not null). |
Copyright © 2017. All rights reserved.