Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

GrantingTickets add to Ticket an additional property: the immediate authenticated Principal to which the GrantingTicket was issued. This might be a user Principal, in the case of the GrantingTicket that is stored into a secure cookie in a user's web browser, or this might be a service Principal, in the case of a GrantingTicket that was issued by secure callback to an application or to an otherwise authenticated application out there on the Internet.

Code Block
titleGrantingTicket


public interface GrantingTicket extends Ticket {

  /**
   * Get the immediate Principal to whom this GrantingTicket was issued.
   */
  public Principal getPrincipal();

}

ServiceTickets add to Ticket an additional property: the Target to which the ServiceTicket is intended to authenticate.

...