Package com.authlete.common.dto
Class AuthorizationTicketInfo
- java.lang.Object
-
- com.authlete.common.dto.AuthorizationTicketInfo
-
- All Implemented Interfaces:
Serializable
public class AuthorizationTicketInfo extends Object implements Serializable
Information about a ticket that has been issued from the/auth/authorization
API.- Since:
- 3.88, Authlete 3.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AuthorizationTicketInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getContext()
Get the arbitrary text attached to the ticket.AuthorizationTicketInfo
setContext(String context)
Set the arbitrary text attached to the ticket.
-
-
-
Method Detail
-
getContext
public String getContext()
Get the arbitrary text attached to the ticket.- Returns:
- The arbitrary text.
-
setContext
public AuthorizationTicketInfo setContext(String context)
Set the arbitrary text attached to the ticket.- Parameters:
context
- The arbitrary text.- Returns:
this
object.
-
-