|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use Session.Key | |
| com.marringtons.util | Every library requires a catch-all packages for classes that cannot be easily grouped elsewhere - and here it is - caches, maps, semaphores, sessions, threads and much more. |
| Uses of Session.Key in com.marringtons.util |
| Methods in com.marringtons.util that return Session.Key | |
static Session.Key |
Session.classScope(Class scope,
String key,
Class valueClass,
Session.Lifetime lifetime)
Retrieve key for class scope data - to be kept in private static final in using class. |
static Session.Key |
Session.packageScope(Class scope,
String key,
Class valueClass,
Session.Lifetime lifetime)
Retrieve key for package scope data - to be kept in private static final in using class. |
static Session.Key |
Session.globalScope(String key,
Class valueClass,
Session.Lifetime lifetime)
Retrieve key for package scope data - to be kept in private static final in using class. |
| Methods in com.marringtons.util with parameters of type Session.Key | |
Object |
Session.get(Session.Key key)
Retrieve a session data object. |
Object |
Session.get(Session.Key key,
Object defaultValue)
Retrieve a value from the session. |
void |
Session.put(Session.Key key,
Object item)
Enter a general object. |
void |
Session.remove(Session.Key key)
Remove the object from the store. |
|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||