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/fail
API.- Since:
- 2.32, Authlete 2.0.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BackchannelAuthenticationFailResponse.Action
The 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.Action
getAction()
Get the next action that the backchannel authentication endpoint should take.String
getResponseContent()
Get the content of the response body of the response to the client.BackchannelAuthenticationFailResponse
setAction(BackchannelAuthenticationFailResponse.Action action)
Set the next action that the backchannel authentication endpoint should take.BackchannelAuthenticationFailResponse
setResponseContent(String responseContent)
Set the content of the response body of the response to the client.-
Methods inherited from class com.authlete.common.dto.ApiResponse
getResultCode, getResultMessage, 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:
this
object.
-
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:
this
object.
-
-