Package com.authlete.common.dto
Class BackchannelAuthenticationFailResponse
- java.lang.Object
-
- com.authlete.common.dto.ApiResponse
-
- com.authlete.common.dto.BackchannelAuthenticationFailResponse
-
- All Implemented Interfaces:
Serializable
public class BackchannelAuthenticationFailResponse extends ApiResponse
Response from Authlete's/api/backchannel/authentication/failAPI.- Since:
- 2.32, Authlete 2.0.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBackchannelAuthenticationFailResponse.ActionThe next action that the OpenID provider implementation should take.
-
Constructor Summary
Constructors Constructor Description BackchannelAuthenticationFailResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BackchannelAuthenticationFailResponse.ActiongetAction()Get the next action that the backchannel authentication endpoint should take.StringgetResponseContent()Get the content of the response body of the response to the client.BackchannelAuthenticationFailResponsesetAction(BackchannelAuthenticationFailResponse.Action action)Set the next action that the backchannel authentication endpoint should take.BackchannelAuthenticationFailResponsesetResponseContent(String responseContent)Set the content of the response body of the response to the client.-
Methods inherited from class com.authlete.common.dto.ApiResponse
getResponseHeaders, getResultCode, getResultMessage, setResponseHeaders, setResultCode, setResultMessage
-
-
-
-
Method Detail
-
getAction
public BackchannelAuthenticationFailResponse.Action getAction()
Get the next action that the backchannel authentication endpoint should take.- Returns:
- The next action.
-
setAction
public BackchannelAuthenticationFailResponse setAction(BackchannelAuthenticationFailResponse.Action action)
Set the next action that the backchannel authentication endpoint should take.- Parameters:
action- The next action.- Returns:
thisobject.
-
getResponseContent
public String getResponseContent()
Get the content of the response body of the response to the client. Its format is always JSON.- Returns:
- The content of the response body of the response to the client.
-
setResponseContent
public BackchannelAuthenticationFailResponse setResponseContent(String responseContent)
Set the content of the response body of the response to the client.- Parameters:
responseContent- The content of the response body of the response to the client.- Returns:
thisobject.
-
-