Uses of Class
org.qtunes.core.Session

Packages that use Session
org.qtunes.auth The "auth" package contains the API interface to authorize user actions - managing logins, sessions etc. 
org.qtunes.auth.control   
org.qtunes.auth.spi An implementation of the "auth" package API 
org.qtunes.core The "core" package defines a Service and it's Context. 
 

Uses of Session in org.qtunes.auth
 

Methods in org.qtunes.auth that return Session
 Session Auth.getSession(int id)
          Get the Session with the specified ID, or null if it doesn't exist
 Session Auth.login(java.util.Map properties)
          Create a new Session
 

Methods in org.qtunes.auth with parameters of type Session
 java.util.Collection<java.lang.String> Auth.getAllowances(Session session)
          Return the set of allowances for the specified Session
 java.util.Collection<java.lang.String> Authorizer.getAllowances(Session session)
          Return the set of allowances this Authorizer will allow for the specified Session, or null if no allowances are granted.
 java.util.Collection<java.lang.String> BasicAuthorizer.getAllowances(Session session)
           
 java.lang.Object SessionMatcher.getProperty(Session session, java.lang.String property)
           
 void Auth.logout(Session session)
          Expire the specified Session
 

Uses of Session in org.qtunes.auth.control
 

Fields in org.qtunes.auth.control declared as Session
protected  Session JSONParser.session
           
 

Methods in org.qtunes.auth.control that return Session
 Session JSONParser.getSession()
           
 Session ParamParser.getSession()
          Get the Session that was specified in the Parameters
abstract  Session SimpleParser.getSession()
           
 

Uses of Session in org.qtunes.auth.spi
 

Subclasses of Session in org.qtunes.auth.spi
 class SessionImpl
          A Session is a single login session and one must be in place for most ControlMethod objects to be run.
 

Methods in org.qtunes.auth.spi that return Session
 Session AuthImpl.getSession(int id)
           
 Session AuthImpl.login(java.util.Map properties)
           
 

Methods in org.qtunes.auth.spi with parameters of type Session
 java.util.Collection<java.lang.String> AuthImpl.getAllowances(Session session)
           
 void AuthImpl.logout(Session session)
           
 

Uses of Session in org.qtunes.core
 

Fields in org.qtunes.core declared as Session
static Session Session.NONE
          A Session placeholder to mark "no session".
 

Methods in org.qtunes.core that return Session
static Session Session.getCurrentSession()
          Return the current Session for this Thread
 

Methods in org.qtunes.core with parameters of type Session
static void Session.setCurrentSession(Session session)
          Set the current Session for this Thread