Uses of Class
net.shibboleth.idp.cas.ticket.Ticket
-
Packages that use Ticket Package Description net.shibboleth.idp.cas.flow.impl CAS protocol flow implementations.net.shibboleth.idp.cas.ticket APIs related to CAS tickets.net.shibboleth.idp.cas.ticket.impl CAS protocol ticket implementations.net.shibboleth.idp.cas.ticket.serialization.impl CAS protocol ticket serialization implementations. -
-
Uses of Ticket in net.shibboleth.idp.cas.flow.impl
Fields in net.shibboleth.idp.cas.flow.impl declared as Ticket Modifier and Type Field Description private TicketBuildProxyChainAction. ticketTicket.private TicketUpdateIdPSessionWithSPSessionAction. ticketTicket.private TicketValidateProxyCallbackAction. ticketCAS ticket.private TicketValidateRenewAction. ticketCAS ticket.Methods in net.shibboleth.idp.cas.flow.impl that return Ticket Modifier and Type Method Description protected TicketAbstractCASProtocolAction. getCASTicket(ProfileRequestContext prc)Get the CAS ticket.Methods in net.shibboleth.idp.cas.flow.impl with parameters of type Ticket Modifier and Type Method Description protected voidAbstractCASProtocolAction. setCASTicket(ProfileRequestContext prc, Ticket ticket)Set the CAS ticket. -
Uses of Ticket in net.shibboleth.idp.cas.ticket
Subclasses of Ticket in net.shibboleth.idp.cas.ticket Modifier and Type Class Description classProxyGrantingTicketCAS proxy-granting ticket.classProxyTicketCAS proxy ticket.classServiceTicketCAS service ticket.Fields in net.shibboleth.idp.cas.ticket declared as Ticket Modifier and Type Field Description private TicketTicketContext. tTicket held by this context.Methods in net.shibboleth.idp.cas.ticket that return Ticket Modifier and Type Method Description TicketTicket. clone(String newId)Create a new ticket from this one with the given identifier.TicketTicketContext. getTicket()Get the ticket held by this context.protected TicketProxyGrantingTicket. newInstance(String newId)protected TicketProxyTicket. newInstance(String newId)protected TicketServiceTicket. newInstance(String newId)Create a new ticket with this ticket's service and expiration.protected TicketTicket. newInstance(String newId)Create a new ticket with this ticket's service and expiration.Constructors in net.shibboleth.idp.cas.ticket with parameters of type Ticket Constructor Description TicketContext(Ticket ticket)Creates a new ticket context to hold a CAS protocol ticket. -
Uses of Ticket in net.shibboleth.idp.cas.ticket.impl
Fields in net.shibboleth.idp.cas.ticket.impl with type parameters of type Ticket Modifier and Type Field Description private static Map<Class<? extends Ticket>,String>AbstractTicketService. CONTEXT_CLASS_MAPMap of ticket classes to context names.private static Map<Class<? extends Ticket>,StorageSerializer<? extends Ticket>>AbstractTicketService. SERIALIZER_MAPMap of ticket classes to serializers.private static Map<Class<? extends Ticket>,StorageSerializer<? extends Ticket>>AbstractTicketService. SERIALIZER_MAPMap of ticket classes to serializers.Methods in net.shibboleth.idp.cas.ticket.impl with type parameters of type Ticket Modifier and Type Method Description private <T extends Ticket>
TEncodingTicketService. decode(Class<T> ticketClass, String id, String prefix)Decode a ticket.protected <T extends Ticket>
TAbstractTicketService. delete(String id, Class<T> clazz)Retrieves a ticket by ID from the storage service and then deletes it.private <T extends Ticket>
TEncodingTicketService. encode(Class<T> ticketClass, T ticket, String prefix)Encode a ticket.protected <T extends Ticket>
TAbstractTicketService. read(String id, Class<T> clazz)Retrieves a ticket by ID from the storage service.protected static <T extends Ticket>
StorageSerializer<T>AbstractTicketService. serializer(Class<T> clazz)Gets the storage service serializer for the given ticket type.protected <T extends Ticket>
voidAbstractTicketService. store(T ticket)Stores the given ticket in the storage service.Method parameters in net.shibboleth.idp.cas.ticket.impl with type arguments of type Ticket Modifier and Type Method Description protected static StringAbstractTicketService. context(Class<? extends Ticket> clazz)Gets the storage service context name for the given ticket type. -
Uses of Ticket in net.shibboleth.idp.cas.ticket.serialization.impl
Classes in net.shibboleth.idp.cas.ticket.serialization.impl with type parameters of type Ticket Modifier and Type Class Description classAbstractTicketSerializer<T extends Ticket>Base class for ticket serializers that use a simple field-delimited serialization strategy.
-