| java.lang.Object edu.yale.its.tp.cas.ticket.Ticket edu.yale.its.tp.cas.ticket.TicketGrantingTicket
All known Subclasses: edu.yale.its.tp.cas.ticket.ProxyGrantingTicket,
TicketGrantingTicket | public class TicketGrantingTicket extends Ticket (Code) | | Represents a CAS ticket-granting ticket, typically vended as a cookie (TGC). This class represents, in the general sense, a
ticket that is used to grant other ticket; it becomes a "powerful" TGC only when vended as such and stored in the TGC cache.
|
Method Summary | |
public void | expire() Markes the ticket as expired, preventing its further use and the validity of subordinate tickets "downstream" from it. | public String | getUsername() Retrieves the ticket's username. | public boolean | isExpired() Returns true if the ticket is expired, false otherwise. |
TicketGrantingTicket | public TicketGrantingTicket(String username)(Code) | | Constructs a new, immutable service ticket.
|
expire | public void expire()(Code) | | Markes the ticket as expired, preventing its further use and the validity of subordinate tickets "downstream" from it.
|
getUsername | public String getUsername()(Code) | | Retrieves the ticket's username.
|
isExpired | public boolean isExpired()(Code) | | Returns true if the ticket is expired, false otherwise.
|
|
|