Uses of Class
com.authlete.common.dto.ClientListResponse
-
Packages that use ClientListResponse 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. -
-
Uses of ClientListResponse in com.authlete.common.api
Methods in com.authlete.common.api that return ClientListResponse Modifier and Type Method 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 withstart
andend
parameters).ClientListResponse
AuthleteApi. getClientList(String developer)
Get the list of client applications that belong to the developer (= call Authlete's/client/get/list
API withdeveloper
parameter).ClientListResponse
AuthleteApi. getClientList(String developer, int start, int end)
Get the list of client applications (= call Authlete's/client/get/list
API withdeveloper
,start
andend
parameters). -
Uses of ClientListResponse in com.authlete.common.dto
Subclasses of ClientListResponse in com.authlete.common.dto Modifier and Type Class Description class
AuthorizedClientListResponse
Response from Authlete's/client/authorization/get/list
API.Methods in com.authlete.common.dto that return ClientListResponse Modifier and Type Method 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 (whendeveloper
isnull
) or of the developer (whendeveloper
is notnull
).
-