| java.lang.Object edu.yale.its.tp.cas.ticket.Ticket edu.yale.its.tp.cas.ticket.ServiceTicket
All known Subclasses: edu.yale.its.tp.cas.ticket.ProxyTicket,
ServiceTicket | public class ServiceTicket extends Ticket (Code) | | Represents a CAS service ticket (ST).
|
Method Summary | |
public TicketGrantingTicket | getGrantor() Returns the ticket's grantor. | public String | getService() Retrieves the ticket's service. | public String | getUsername() Retrieves the ticket's username. | public boolean | isFromNewLogin() Returns true if this service ticket was generated in response to a dialogue with a user during which the user supplied
primary credentials. | public boolean | isValid() Returns true if it would be appropriate to confer access to the service returned by getService() at the present point in
time, false otherwise. |
getService | public String getService()(Code) | | Retrieves the ticket's service.
|
getUsername | public String getUsername()(Code) | | Retrieves the ticket's username.
|
isFromNewLogin | public boolean isFromNewLogin()(Code) | | Returns true if this service ticket was generated in response to a dialogue with a user during which the user supplied
primary credentials. (Returns false, by contrast, if the ticket was generated in response to a request where a TGC was used.)
|
isValid | public boolean isValid()(Code) | | Returns true if it would be appropriate to confer access to the service returned by getService() at the present point in
time, false otherwise.
|
|
|