net.sourceforge.stripes.controller
Interface StripesConstants


public interface StripesConstants

Container for constant values that are used across more than one class in Stripes.

Author:
Tim Fennell

Field Summary
static String REQ_ATTR_ACTION_BEAN
          The name under which the ActionBean for a request is stored as a request attribute before forwarding to the JSP.
static String REQ_ATTR_ACTION_BEAN_STACK
          The name of a request attribute in which a Stack of action beans is some times stored when a single request involves includes of action beans.
static String REQ_ATTR_CURRENT_FLASH_SCOPE
          The name of a request attribute that holds the lookup key of the current flash scope.
static String REQ_ATTR_EVENT_NAME
          The name of a request attribute that is checked first to determine the name of the event that should fire.
static String REQ_ATTR_FLASH_SCOPE_LOCATION
          The name of a request parameter that holds a Map of flash scopes keyed by the hash code of the request that generated them.
static String REQ_ATTR_INCLUDE_PATH
          Request attribute key defined by the servlet spec for storing the included servlet path when processing a server side include.
static String REQ_ATTR_INCLUDE_PATH_INFO
          Request attribute key defined by the servlet spec for storing the included path info when processing a server side include.
static String REQ_ATTR_MESSAGES
          The attribute key that is used to store the default set of non-error messages for display to the user.
static String REQ_ATTR_TAG_STACK
          The attribute key that is used to store the tag stack during page processing.
static Set<String> SPECIAL_URL_KEYS
          An immutable set of URL keys or request parameters that have special meaning to Stripes and as a result should not be referenced in binding, validation or other other places that work on the full set of request parameters.
static String URL_KEY_EVENT_NAME
          The name of a URL parameter that is used as a last resort to attempt to determine the name of the event that is being fired by the browser.
static String URL_KEY_FIELDS_PRESENT
          The name of a URL parameter that is used to hold the path (relative to the web application root) from which the current form submission was made.
static String URL_KEY_FLASH_SCOPE_ID
          The name of a URL parameter that is used to tell Stripes that a flash scope exists for the current request.
static String URL_KEY_SOURCE_PAGE
          The name of a URL parameter that is used to hold the path (relative to the web application root) from which the current form submission was made.
 

Field Detail

URL_KEY_SOURCE_PAGE

static final String URL_KEY_SOURCE_PAGE
The name of a URL parameter that is used to hold the path (relative to the web application root) from which the current form submission was made.

See Also:
Constant Field Values

URL_KEY_FIELDS_PRESENT

static final String URL_KEY_FIELDS_PRESENT
The name of a URL parameter that is used to hold the path (relative to the web application root) from which the current form submission was made.

See Also:
Constant Field Values

URL_KEY_EVENT_NAME

static final String URL_KEY_EVENT_NAME
The name of a URL parameter that is used as a last resort to attempt to determine the name of the event that is being fired by the browser.

See Also:
Constant Field Values

URL_KEY_FLASH_SCOPE_ID

static final String URL_KEY_FLASH_SCOPE_ID
The name of a URL parameter that is used to tell Stripes that a flash scope exists for the current request.

See Also:
Constant Field Values

SPECIAL_URL_KEYS

static final Set<String> SPECIAL_URL_KEYS
An immutable set of URL keys or request parameters that have special meaning to Stripes and as a result should not be referenced in binding, validation or other other places that work on the full set of request parameters.


REQ_ATTR_ACTION_BEAN

static final String REQ_ATTR_ACTION_BEAN
The name under which the ActionBean for a request is stored as a request attribute before forwarding to the JSP.

See Also:
Constant Field Values

REQ_ATTR_ACTION_BEAN_STACK

static final String REQ_ATTR_ACTION_BEAN_STACK
The name of a request attribute in which a Stack of action beans is some times stored when a single request involves includes of action beans.

See Also:
Constant Field Values

REQ_ATTR_MESSAGES

static final String REQ_ATTR_MESSAGES
The attribute key that is used to store the default set of non-error messages for display to the user.

See Also:
Constant Field Values

REQ_ATTR_TAG_STACK

static final String REQ_ATTR_TAG_STACK
The attribute key that is used to store the tag stack during page processing. The tag stack is a Stack of Stripes tags so that parent tag relationships can work across includes etc.

See Also:
Constant Field Values

REQ_ATTR_FLASH_SCOPE_LOCATION

static final String REQ_ATTR_FLASH_SCOPE_LOCATION
The name of a request parameter that holds a Map of flash scopes keyed by the hash code of the request that generated them.

See Also:
Constant Field Values

REQ_ATTR_CURRENT_FLASH_SCOPE

static final String REQ_ATTR_CURRENT_FLASH_SCOPE
The name of a request attribute that holds the lookup key of the current flash scope.

See Also:
Constant Field Values

REQ_ATTR_EVENT_NAME

static final String REQ_ATTR_EVENT_NAME
The name of a request attribute that is checked first to determine the name of the event that should fire.

See Also:
Constant Field Values

REQ_ATTR_INCLUDE_PATH

static final String REQ_ATTR_INCLUDE_PATH
Request attribute key defined by the servlet spec for storing the included servlet path when processing a server side include.

See Also:
Constant Field Values

REQ_ATTR_INCLUDE_PATH_INFO

static final String REQ_ATTR_INCLUDE_PATH_INFO
Request attribute key defined by the servlet spec for storing the included path info when processing a server side include.

See Also:
Constant Field Values


? Copyright 2005-2006, Stripes Development Team.