Uses of Class
net.sourceforge.apphere.Session

Packages that use Session
net.sourceforge.apphere   
net.sourceforge.apphere.apps   
net.sourceforge.apphere.dao   
net.sourceforge.apphere.dao.mbeanclient   
net.sourceforge.apphere.ejb   
net.sourceforge.apphere.interfaces   
net.sourceforge.apphere.mbean   
net.sourceforge.apphere.sessions   
net.sourceforge.apphere.util   
 

Uses of Session in net.sourceforge.apphere
 

Methods in net.sourceforge.apphere that return Session
 Session VirtualApplication.getSessionState()
          Method getSessionState returns the value of the shared application's current state.
 Session SessionManager.getSession(int sessID)
           
static Session SessionHandlerFactory.getSpecificInstance(java.lang.String name)
           
static Session SessionHandlerFactory.narrow(Session baseSess)
           
 

Methods in net.sourceforge.apphere with parameters of type Session
 void VirtualApplication.setSessionState(Session newState)
          Method setSessionState updates the application with the latest state from the user's client.
 int SessionManager.addSession(Session newSess)
           
 void SessionManager.updateSession(Session sess)
          Method updateSession step 3
static Session SessionHandlerFactory.narrow(Session baseSess)
           
 void Session.mergeSessions(Session newVals)
           
 void AppHereSession.mergeSessions(Session newVals)
           
 

Uses of Session in net.sourceforge.apphere.apps
 

Methods in net.sourceforge.apphere.apps that return Session
 Session VirtualWebBrowser.getSessionState()
           
 

Methods in net.sourceforge.apphere.apps with parameters of type Session
 void VirtualWebBrowser.setSessionState(Session newState)
           
 WebSession VirtualWebBrowser.readWebSession(Session sess)
          Turn a generic Session (from client) into a WebSession reads the Metadata attribute to find the URL
 

Uses of Session in net.sourceforge.apphere.dao
 

Methods in net.sourceforge.apphere.dao that return Session
 Session SessionDAO.getSession(int userId, int sessID)
           
 

Methods in net.sourceforge.apphere.dao with parameters of type Session
 int SessionDAO.addSession(int userId, Session newSess)
           
 void SessionDAO.updateSession(int userId, Session sess)
           
 

Uses of Session in net.sourceforge.apphere.dao.mbeanclient
 

Methods in net.sourceforge.apphere.dao.mbeanclient that return Session
 Session MBeanSessionDAO.getSession(int userId, int sessID)
           
 

Methods in net.sourceforge.apphere.dao.mbeanclient with parameters of type Session
 int MBeanSessionDAO.addSession(int userId, Session newSess)
           
 void MBeanSessionDAO.updateSession(int userId, Session sess)
           
 

Uses of Session in net.sourceforge.apphere.ejb
 

Methods in net.sourceforge.apphere.ejb that return Session
 Session AppHereBean.getSession(int sessionID, java.lang.String loginId)
           
 Session[] AppHereBean.getSessions(java.lang.String loginId)
           
 

Methods in net.sourceforge.apphere.ejb with parameters of type Session
 int AppHereBean.addSession(Session newSess, java.lang.String loginId)
           
 void AppHereBean.updateSession(Session sessValue, java.lang.String remoteIPAddr, java.lang.String loginId)
          Session Transfer Step 3
 

Uses of Session in net.sourceforge.apphere.interfaces
 

Methods in net.sourceforge.apphere.interfaces that return Session
 Session AppHere.getSession(int sessionID, java.lang.String loginId)
           
 Session[] AppHere.getSessions(java.lang.String loginId)
           
 

Methods in net.sourceforge.apphere.interfaces with parameters of type Session
 int AppHere.addSession(Session newSess, java.lang.String loginId)
           
 void AppHere.updateSession(Session sessValue, java.lang.String remoteIPAddr, java.lang.String loginId)
          Session Transfer Step 3
 

Uses of Session in net.sourceforge.apphere.mbean
 

Methods in net.sourceforge.apphere.mbean that return Session
 Session SessionService.getSession(int userId, int sessID)
           
 

Methods in net.sourceforge.apphere.mbean with parameters of type Session
 int SessionService.addSession(int userId, Session newSess)
           
 void SessionService.updateSession(int userId, Session sess)
           
 

Uses of Session in net.sourceforge.apphere.sessions
 

Subclasses of Session in net.sourceforge.apphere.sessions
 class WebSession
           
 

Methods in net.sourceforge.apphere.sessions with parameters of type Session
 void WebSession.mergeSessions(Session newVals)
           
 

Uses of Session in net.sourceforge.apphere.util
 

Fields in net.sourceforge.apphere.util declared as Session
 Session SessionMetadataParser.sess
           
 

Methods in net.sourceforge.apphere.util that return Session
static Session SessionMetadataParser.parse(Session session)
           
 Session SessionList.getSession(int index)
           
 Session[] SessionList.toSessionArray()
          casts array elements as Session, otherwise they'd be Object
 

Methods in net.sourceforge.apphere.util with parameters of type Session
static Session SessionMetadataParser.parse(Session session)
           
 void SessionList.add(int index, Session element)
           
 boolean SessionList.add(Session o)
           
 boolean SessionList.contains(Session o)
           
 int SessionList.indexOf(Session o)
           
 int SessionList.lastIndexOf(Session o)
           
 java.lang.Object SessionList.set(int index, Session element)
           
 boolean SessionList.remove(Session o)
           
 

Constructors in net.sourceforge.apphere.util with parameters of type Session
SessionOutputStream(Session destination)
           
SessionMetadataParser(Session sess)
           
SessionList(Session[] sessArray)
          Constructor for SessionList accepts an array of Sessions.