Uses of Class
com.authlete.common.types.TokenStatus
-
Packages that use TokenStatus Package Description com.authlete.common.api The definition of Authlete API (AuthleteApi
) and the factory class (AuthleteApiFactory
).com.authlete.common.types Enum definitions and lists of pre-defined constants. -
-
Uses of TokenStatus in com.authlete.common.api
Methods in com.authlete.common.api with parameters of type TokenStatus Modifier and Type Method Description TokenListResponse
AuthleteApi. getTokenList(int start, int end, TokenStatus tokenStatus)
Get the list of access tokens that are associated with the service (= call Authlete's/auth/token/get/list
API withstart
andend
parameters).TokenListResponse
AuthleteApi. getTokenList(TokenStatus tokenStatus)
Get the list of access tokens that are associated with the service (= call Authlete's/auth/token/get/list
API).TokenListResponse
AuthleteApi. getTokenList(String clientIdentifier, String subject, int start, int end, TokenStatus tokenStatus)
Get the list of access tokens (= call Authlete's/auth/token/get/list
API withclientIdentifier
,subject
,start
andend
parameters).TokenListResponse
AuthleteApi. getTokenList(String clientIdentifier, String subject, TokenStatus tokenStatus)
Get the list of access tokens (= call Authlete's/auth/token/get/list
API withclientIdentifier
andsubject
). -
Uses of TokenStatus in com.authlete.common.types
Methods in com.authlete.common.types that return TokenStatus Modifier and Type Method Description static TokenStatus
TokenStatus. valueOf(String name)
Returns the enum constant of this type with the specified name.static TokenStatus[]
TokenStatus. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-