Package com.authlete.common.dto
Class TokenRevokeResponse
- java.lang.Object
-
- com.authlete.common.dto.ApiResponse
-
- com.authlete.common.dto.TokenRevokeResponse
-
- All Implemented Interfaces:
Serializable
public class TokenRevokeResponse extends ApiResponse
Response from Authlete's/auth/token/revoke
API.- Since:
- 3.26, Authlete 2.2.29
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TokenRevokeResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCount()
Get the number of revoked tokens.TokenRevokeResponse
setCount(int count)
Set the number of revoked tokens.-
Methods inherited from class com.authlete.common.dto.ApiResponse
getResultCode, getResultMessage, setResultCode, setResultMessage
-
-
-
-
Method Detail
-
getCount
public int getCount()
Get the number of revoked tokens.- Returns:
- The number of revoked tokens.
-
setCount
public TokenRevokeResponse setCount(int count)
Set the number of revoked tokens.- Parameters:
count
- The number of revoked tokens.- Returns:
this
object.
-
-