Package com.authlete.common.dto
Class ClientSecretRefreshResponse
- java.lang.Object
-
- com.authlete.common.dto.ApiResponse
-
- com.authlete.common.dto.ClientSecretRefreshResponse
-
- All Implemented Interfaces:
Serializable
public class ClientSecretRefreshResponse extends ApiResponse
Response from Authlete's/api/client/secret/refresh
API.- Since:
- 2.11, Authlete 1.1.12
- Author:
- Takahiko Kawasaki
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClientSecretRefreshResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getNewClientSecret()
Get the new client secret.String
getOldClientSecret()
Get the old client secret.void
setNewClientSecret(String secret)
Set the new client secret.void
setOldClientSecret(String secret)
Set the old client secret.-
Methods inherited from class com.authlete.common.dto.ApiResponse
getResultCode, getResultMessage, setResultCode, setResultMessage
-
-
-
-
Method Detail
-
getNewClientSecret
public String getNewClientSecret()
Get the new client secret.- Returns:
- The new client secret.
-
setNewClientSecret
public void setNewClientSecret(String secret)
Set the new client secret.- Parameters:
secret
- The new client secret.
-
getOldClientSecret
public String getOldClientSecret()
Get the old client secret.- Returns:
- The old client secret.
-
setOldClientSecret
public void setOldClientSecret(String secret)
Set the old client secret.- Parameters:
secret
- The old client secret.
-
-