Package com.authlete.common.dto
Class AuthorizationTicketInfoResponse
- java.lang.Object
-
- com.authlete.common.dto.ApiResponse
-
- com.authlete.common.dto.AuthorizationTicketInfoResponse
-
- All Implemented Interfaces:
Serializable
public class AuthorizationTicketInfoResponse extends ApiResponse
Response from Authlete's/auth/authorization/ticket/infoAPI.The API is used to get information about a ticket that has been issued from the
/auth/authorizationAPI.- Since:
- 3.88, Authlete 3.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAuthorizationTicketInfoResponse.ActionThe result of the/auth/authorization/ticket/infoAPI call.
-
Constructor Summary
Constructors Constructor Description AuthorizationTicketInfoResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorizationTicketInfoResponse.ActiongetAction()Get the result of the/auth/authorization/ticket/infoAPI call.AuthorizationTicketInfogetInfo()Get the information about the ticket.AuthorizationTicketInfoResponsesetAction(AuthorizationTicketInfoResponse.Action action)Set the result of the/auth/authorization/ticket/infoAPI call.AuthorizationTicketInfoResponsesetInfo(AuthorizationTicketInfo info)Set the information about the ticket.-
Methods inherited from class com.authlete.common.dto.ApiResponse
getResponseHeaders, getResultCode, getResultMessage, setResponseHeaders, setResultCode, setResultMessage
-
-
-
-
Method Detail
-
getAction
public AuthorizationTicketInfoResponse.Action getAction()
Get the result of the/auth/authorization/ticket/infoAPI call.- Returns:
- The result of the API call.
-
setAction
public AuthorizationTicketInfoResponse setAction(AuthorizationTicketInfoResponse.Action action)
Set the result of the/auth/authorization/ticket/infoAPI call.- Parameters:
action- The result of the API call.- Returns:
thisobject.
-
getInfo
public AuthorizationTicketInfo getInfo()
Get the information about the ticket.- Returns:
- The information about the ticket.
-
setInfo
public AuthorizationTicketInfoResponse setInfo(AuthorizationTicketInfo info)
Set the information about the ticket.- Parameters:
info- The information about the ticket.- Returns:
thisobject.
-
-