|
|||||||||
| Home >> All >> com >> jcorporate >> expresso >> core >> controller >> [ session overview ] | PREV NEXT | ||||||||
A
- attributes - Variable in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- A storage place for attributes
C
- com.jcorporate.expresso.core.controller.session - package com.jcorporate.expresso.core.controller.session
- This package contains the object defining the "Controller" object, an important component of Expresso that should be used to encapsulate all user interaction sequences.
G
- getAttribute(String) - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Retrieves the object from the request context.
- getAttribute(String) - Method in interface com.jcorporate.expresso.core.controller.session.PersistentSession
- Retrieves the object from the request context.
- getAttribute(String) - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Retrieves the object from the request context.
- getAttributeNames() - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Retrieves all attribute names in the request context.
- getAttributeNames() - Method in interface com.jcorporate.expresso.core.controller.session.PersistentSession
- Retrieves all attribute names in the request context.
- getAttributeNames() - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Retrieves all attribute names in the request context.
- getClientAttribute(String) - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Retrieves a value of a cookie set on the client's system.
- getClientAttribute(String) - Method in interface com.jcorporate.expresso.core.controller.session.PersistentSession
- Retrieves a value of a cookie set on the client's system.
- getClientAttribute(String) - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Retrieves a value of a cookie set on the client's system.
- getPeristentAttributeNames() - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Retrieves all attribute names from the session context.
- getPeristentAttributeNames() - Method in interface com.jcorporate.expresso.core.controller.session.PersistentSession
- Retrieves all attribute names from the session context.
- getPeristentAttributeNames() - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Retrieves all attribute names from the session context.
- getPersistentAttribute(String) - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Retrieves the object from the session context.
- getPersistentAttribute(String) - Method in interface com.jcorporate.expresso.core.controller.session.PersistentSession
- Retrieves the object from the session context.
- getPersistentAttribute(String) - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Retrieves the object from the session context.
- getPersistentAttributes() - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Retrieves the persistent attributes table.
H
- HTTPPersistentSession - class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession.
- A
HTTPPersistentSessionis simply a place to stash some values between states of a controller object. - HTTPPersistentSession() - Constructor for class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Creates new HTTPPersistentSession
- HTTPPersistentSession(HttpServletRequest, HttpServletResponse) - Constructor for class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Creates new HTTPPersistentSession and set the request object in one step
I
- invalidate() - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Clear out the session.
- invalidate() - Method in interface com.jcorporate.expresso.core.controller.session.PersistentSession
- Clear out the session.
- invalidate() - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Clear out the session.
L
- log - Static variable in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- The log object
P
- PersistentSession - interface com.jcorporate.expresso.core.controller.session.PersistentSession.
- A PersistentSession is simply a place to stash some values between states of a controller object.
- persistentAttributes - Variable in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- A Storage place for persistent attributes
R
- removeAttribute(String) - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Clears an attribute from the request context
- removeAttribute(String) - Method in interface com.jcorporate.expresso.core.controller.session.PersistentSession
- Clears an attribute from the request context
- removeAttribute(String) - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Clears an attribute from the request context
- removePersistentAttribute(String) - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Clears an attribute from the session context
- removePersistentAttribute(String) - Method in interface com.jcorporate.expresso.core.controller.session.PersistentSession
- Clears an attribute from the session context
- removePersistentAttribute(String) - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Clears an attribute from the session context
- request - Variable in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- The servlet request
- response - Variable in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- The servlet response object.
S
- SimplePersistentSession - class com.jcorporate.expresso.core.controller.session.SimplePersistentSession.
- This is an implementation of PersistentSession that is useful for command line usage.
- SimplePersistentSession() - Constructor for class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Creates new SimplePersistentSession
- setAttribute(String, Object) - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Sets an attribute on the Servlet request
- setAttribute(String, Object) - Method in interface com.jcorporate.expresso.core.controller.session.PersistentSession
- Sets an attribute that is valid for the duration of the request.
- setAttribute(String, Object) - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Sets an attribute that is valid for the duration of the request.
- setClientAttribute(String, String) - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Sets a cookie in the client's system.
- setClientAttribute(String, String) - Method in interface com.jcorporate.expresso.core.controller.session.PersistentSession
- If in HTTP environment, it sets an encrypted cookie to the client.
- setClientAttribute(String, String) - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Does nothing.
- setPersistentAttribute(String, Object) - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Saves an attribute to the actual session, rather than simply the response.
- setPersistentAttribute(String, Object) - Method in interface com.jcorporate.expresso.core.controller.session.PersistentSession
- Saves an attribute to the actual session, rather than simply the response.
- setPersistentAttribute(String, Object) - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Saves an attribute to the actual session, rather than simply the response.
- setPersistentAttributes(Map) - Method in class com.jcorporate.expresso.core.controller.session.SimplePersistentSession
- Sets the persistent attributes that may have been saved across instances of command line 'session'
- setRequest(HttpServletRequest) - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Set the request object so we can get to the session.
- setResponse(HttpServletResponse) - Method in class com.jcorporate.expresso.core.controller.session.HTTPPersistentSession
- Set the response object so we can get to all the http objects we need.
A C G H I L P R S
|
|||||||||
| Home >> All >> com >> jcorporate >> expresso >> core >> controller >> [ session overview ] | PREV NEXT | ||||||||