com.jcorporate.expresso.core.controller.session |
This package contains the interface PeristantSession and a number of implementations of this interface. PersistentSession
is used by Controller objects to store information, either for a single sequence of operations or more
permanantly. In a servlet environment, the HttpServletRequest attributes are used for temporary storage, and the
HttpSession object for more Persistent storage.
|
Java Source File Name | Type | Comment |
HTTPPersistentSession.java | Class | A HTTPPersistentSession is simply a place to stash some values
between states of a controller object. |
PersistentSession.java | Interface | A PersistentSession is simply a place to stash some values between
states of a controller object. |
SimplePersistentSession.java | Class | This is an implementation of PersistentSession that is useful for command
line usage. |