Uses of Interface
airline.UserSession

Uses of UserSession in airline
 

Classes in airline that implement UserSession
 class AdministratorSession
          Manages the flow of control for a session with a registered Administrator.
 class CustomerSession
          Manages the flow of control for a session with a registered Customer.
 

Methods in airline that return UserSession
 UserSession Customer.getSession(Connection connect)
          Overrides the factory function User.getSession in order to provide an appropriate CustomerSession.
abstract  UserSession User.getSession(Connection connection)
          A factory function producing an appropriate UserSession for this user.
 UserSession Administrator.getSession(Connection connect)
          Overrides the factory function User.getSession in order to provide an appropriate AdministratorSession.