Package sunlabs.brazil.session
Class PJamaSessionManager
- java.lang.Object
-
- sunlabs.brazil.session.SessionManager
-
- sunlabs.brazil.session.PJamaSessionManager
-
public class PJamaSessionManager extends SessionManager
Use pJama to implement persistant sessions.- Version:
- 1.0, 08/20/98
- Author:
- Stephen Uhler
-
-
Constructor Summary
Constructors Constructor Description PJamaSessionManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
putObj(java.lang.Object session, java.lang.Object ident, java.lang.Object value)
Return the object associated with this session.-
Methods inherited from class sunlabs.brazil.session.SessionManager
get, getObj, getSession, makeKey, put, remove, removeObj, setSessionManager
-
-
-
-
Method Detail
-
putObj
protected void putObj(java.lang.Object session, java.lang.Object ident, java.lang.Object value)
Return the object associated with this session. If the session doesn't already exist, it is created by calling newinstance() withmyClass.
- Overrides:
putObj
in classSessionManager
- Parameters:
session
- The object identifying the sessionident
- The session user's identitymyClass
- The class to create a new instance of for a new session
-
-