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 ClientListResponseAuthleteApi. getClientList()Get the list of client applications that belong to the service (= call Authlete's/client/get/listAPI).ClientListResponseAuthleteApi. getClientList(int start, int end)Get the list of client applications that belong to the service (= call Authlete's/client/get/listAPI withstartandendparameters).ClientListResponseAuthleteApi. getClientList(String developer)Get the list of client applications that belong to the developer (= call Authlete's/client/get/listAPI withdeveloperparameter).ClientListResponseAuthleteApi. getClientList(String developer, int start, int end)Get the list of client applications (= call Authlete's/client/get/listAPI withdeveloper,startandendparameters). -
Uses of ClientListResponse in com.authlete.common.dto
Subclasses of ClientListResponse in com.authlete.common.dto Modifier and Type Class Description classAuthorizedClientListResponseResponse from Authlete's/client/authorization/get/listAPI.Methods in com.authlete.common.dto that return ClientListResponse Modifier and Type Method Description ClientListResponseClientListResponse. setClients(Client[] clients)Set the list of clients that match the query conditions.ClientListResponseClientListResponse. setDeveloper(String developer)Set the developer.ClientListResponseClientListResponse. setEnd(int end)Set the end index (exclusive) for the result set of the query.ClientListResponseClientListResponse. setStart(int start)Set the start index (inclusive) for the result set of the query.ClientListResponseClientListResponse. setTotalCount(int count)Set the total count of client applications either of the service (whendeveloperisnull) or of the developer (whendeveloperis notnull).
-