Class BackchannelAuthenticationIssueRequest

  • All Implemented Interfaces:
    Serializable

    public class BackchannelAuthenticationIssueRequest
    extends Object
    implements Serializable
    Request to Authlete's /api/backchannel/authentication/issue API.

    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 Detail

      • BackchannelAuthenticationIssueRequest

        public BackchannelAuthenticationIssueRequest()
    • Method Detail

      • getTicket

        public String getTicket()
        Get the ticket which is necessary to call Authlete's /api/backchannel/authentication/issue API.
        Returns:
        A ticket.
      • setTicket

        public BackchannelAuthenticationIssueRequest setTicket​(String ticket)
        Set the ticket which is necessary to call Authlete's /api/backchannel/authentication/issue API.
        Parameters:
        ticket - A ticket previously issued by Authlete's /api/backchannel/authentication API.
        Returns:
        this object.