Uses of Class
com.authlete.common.dto.ServiceListResponse
-
Packages that use ServiceListResponse 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 ServiceListResponse in com.authlete.common.api
Methods in com.authlete.common.api that return ServiceListResponse Modifier and Type Method Description ServiceListResponse
AuthleteApi. getServiceList()
Get the list of services that belong to the service owner (= call Authlete's/service/get/list
API).ServiceListResponse
AuthleteApi. getServiceList(int start, int end)
Get the list of services that belong to the service owner (= call Authlete's/service/get/list
API withstart
andend
parameters). -
Uses of ServiceListResponse in com.authlete.common.dto
Methods in com.authlete.common.dto that return ServiceListResponse Modifier and Type Method Description ServiceListResponse
ServiceListResponse. setEnd(int end)
Set the end index (exclusive) for the result set of the query.ServiceListResponse
ServiceListResponse. setServices(Service[] services)
Set the list of services that match the query conditions.ServiceListResponse
ServiceListResponse. setStart(int start)
Set the start index (inclusive) for the result set of the query.ServiceListResponse
ServiceListResponse. setTotalCount(int count)
Set the total count of services.
-