Class Constants
Global constants for the Chain of Responsibility Library.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The default context attribute under which the ActionConfig for the current request will be stored.static final String
The default context attribute under which the ActionForm for the current request will be stored.static final String
The default context attribute under which the Action for the current request will be stored.static final String
The default context attribute under which the ActionServet for the current application will be stored.static final String
The base part of the context attribute under which a Map containing the Action instances associated with this module are stored.static final String
The default context attribute under which a boolean flag indicating whether this request has been cancelled will be stored.static final String
The context attribute under which the Catalog containing our defined command chains has been stored.static final String
The base part of the context attribute under which a Map containing the Dispatcher instances associated with this module are stored.static final String
The default context attribute under which an Exception will be stored before passing it to an exception handler chain.static final String
The default context attribute under which the ForwardConfig for the current request will be stored.static final String
The default context attribute under which the include path for the current request will be stored.static final String
The request attribute under which the path information is stored for processing during a RequestDispatcher.include() call.static final String
The request attribute under which the servlet path is stored for processing during a RequestDispatcher.include() call.static final String
The default context attribute under which the Locale for the current request will be stored.static final String
The default context attribute under which the MessageResources for the current request will be stored.static final String
The default context attribute under which the ModuleConfig for the current request will be stored.static final String
The default context attribute key under which a Boolean is stored, indicating the valid state of the current request. -
Constructor Summary
-
Method Summary
-
Field Details
-
ACTION_KEY
The default context attribute under which the Action for the current request will be stored.
- See Also:
-
ACTION_CONFIG_KEY
The default context attribute under which the ActionConfig for the current request will be stored.
- See Also:
-
ACTION_FORM_KEY
The default context attribute under which the ActionForm for the current request will be stored.
- See Also:
-
ACTION_SERVLET_KEY
The default context attribute under which the ActionServet for the current application will be stored.
- See Also:
-
CANCEL_KEY
The default context attribute under which a boolean flag indicating whether this request has been cancelled will be stored.
- See Also:
-
EXCEPTION_KEY
The default context attribute under which an Exception will be stored before passing it to an exception handler chain.
- See Also:
-
FORWARD_CONFIG_KEY
The default context attribute under which the ForwardConfig for the current request will be stored.
- See Also:
-
INCLUDE_KEY
The default context attribute under which the include path for the current request will be stored.
- See Also:
-
LOCALE_KEY
The default context attribute under which the Locale for the current request will be stored.
- See Also:
-
MESSAGE_RESOURCES_KEY
The default context attribute under which the MessageResources for the current request will be stored.
- See Also:
-
MODULE_CONFIG_KEY
The default context attribute under which the ModuleConfig for the current request will be stored.
- See Also:
-
VALID_KEY
The default context attribute key under which a Boolean is stored, indicating the valid state of the current request. If not present, a value of Boolean.FALSE should be assumed.
- See Also:
-
ACTIONS_KEY
The base part of the context attribute under which a Map containing the Action instances associated with this module are stored. This value must be suffixed with the module prefix in order to create a unique key per module.
- See Also:
-
DISPATCHERS_KEY
The base part of the context attribute under which a Map containing the Dispatcher instances associated with this module are stored. This value must be suffixed with the module prefix in order to create a unique key per module.
- Since:
- Struts 1.4
- See Also:
-
CATALOG_ATTR
The context attribute under which the Catalog containing our defined command chains has been stored.
- See Also:
-
INCLUDE_PATH_INFO
The request attribute under which the path information is stored for processing during a RequestDispatcher.include() call.
- See Also:
-
INCLUDE_SERVLET_PATH
The request attribute under which the servlet path is stored for processing during a RequestDispatcher.include() call.
- See Also:
-
-
Constructor Details
-
Constants
public Constants()
-