Package com.authlete.common.dto
Class BackchannelAuthenticationIssueRequest
- java.lang.Object
-
- com.authlete.common.dto.BackchannelAuthenticationIssueRequest
-
- All Implemented Interfaces:
Serializable
public class BackchannelAuthenticationIssueRequest extends Object implements Serializable
Request to Authlete's/api/backchannel/authentication/issueAPI.The API prepares JSON that contains an
auth_req_id. The JSON should be used as the response body of the response which is returned to the client from the backchannel authentication endpoint.- Since:
- 2.32
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BackchannelAuthenticationIssueRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetTicket()Get the ticket which is necessary to call Authlete's/api/backchannel/authentication/issueAPI.BackchannelAuthenticationIssueRequestsetTicket(String ticket)Set the ticket which is necessary to call Authlete's/api/backchannel/authentication/issueAPI.
-
-
-
Method Detail
-
getTicket
public String getTicket()
Get the ticket which is necessary to call Authlete's/api/backchannel/authentication/issueAPI.- Returns:
- A ticket.
-
setTicket
public BackchannelAuthenticationIssueRequest setTicket(String ticket)
Set the ticket which is necessary to call Authlete's/api/backchannel/authentication/issueAPI.- Parameters:
ticket- A ticket previously issued by Authlete's/api/backchannel/authenticationAPI.- Returns:
thisobject.
-
-