org.apache.struts.chain
Class Constants

java.lang.Object
  extended by org.apache.struts.chain.Constants

public final class Constants
extends java.lang.Object

Global constants for the Chain of Responsibility Library.


Field Summary
static java.lang.String ACTION_CONFIG_KEY
          The default context attribute under which the ActionConfig for the current request will be stored.
static java.lang.String ACTION_FORM_KEY
          The default context attribute under which the ActionForm for the current request will be stored.
static java.lang.String ACTION_KEY
          The default context attribute under which the Action for the current request will be stored.
static java.lang.String ACTION_SERVLET_KEY
          The default context attribute under which the ActionServet for the current application will be stored.
static java.lang.String ACTIONS_KEY
          The base part of the context attribute under which a Map containing the Action instances associated with this module are stored.
static java.lang.String CANCEL_KEY
          The default context attribute under which a boolean flag indicating whether this request has been cancelled will be stored.
static java.lang.String CATALOG_ATTR
          The context attribute under which the Catalog containing our defined command chains has been stored.
static java.lang.String EXCEPTION_KEY
          The default context attribute under which an Exception will be stored before passing it to an exception handler chain.
static java.lang.String FORWARD_CONFIG_KEY
          The default context attribute under which the ForwardConfig for the current request will be stored.
static java.lang.String INCLUDE_KEY
          The default context attribute under which the include path for the current request will be stored.
static java.lang.String INCLUDE_PATH_INFO
          The request attribute under which the path information is stored for processing during a RequestDispatcher.include() call.
static java.lang.String INCLUDE_SERVLET_PATH
          The request attribute under which the servlet path is stored for processing during a RequestDispatcher.include() call.
static java.lang.String LOCALE_KEY
          The default context attribute under which the Locale for the current request will be stored.
static java.lang.String MESSAGE_RESOURCES_KEY
          The default context attribute under which the MessageResources for the current request will be stored.
static java.lang.String MODULE_CONFIG_KEY
          The default context attribute under which the ModuleConfig for the current request will be stored.
static java.lang.String VALID_KEY
          The default context attribute key under which a Boolean is stored, indicating the valid state of the current request.
 
Constructor Summary
Constants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ACTION_KEY

public static final java.lang.String ACTION_KEY

The default context attribute under which the Action for the current request will be stored.

See Also:
Constant Field Values

ACTION_CONFIG_KEY

public static final java.lang.String ACTION_CONFIG_KEY

The default context attribute under which the ActionConfig for the current request will be stored.

See Also:
Constant Field Values

ACTION_FORM_KEY

public static final java.lang.String ACTION_FORM_KEY

The default context attribute under which the ActionForm for the current request will be stored.

See Also:
Constant Field Values

ACTION_SERVLET_KEY

public static final java.lang.String ACTION_SERVLET_KEY

The default context attribute under which the ActionServet for the current application will be stored.

See Also:
Constant Field Values

CANCEL_KEY

public static final java.lang.String CANCEL_KEY

The default context attribute under which a boolean flag indicating whether this request has been cancelled will be stored.

See Also:
Constant Field Values

EXCEPTION_KEY

public static final java.lang.String EXCEPTION_KEY

The default context attribute under which an Exception will be stored before passing it to an exception handler chain.

See Also:
Constant Field Values

FORWARD_CONFIG_KEY

public static final java.lang.String FORWARD_CONFIG_KEY

The default context attribute under which the ForwardConfig for the current request will be stored.

See Also:
Constant Field Values

INCLUDE_KEY

public static final java.lang.String INCLUDE_KEY

The default context attribute under which the include path for the current request will be stored.

See Also:
Constant Field Values

LOCALE_KEY

public static final java.lang.String LOCALE_KEY

The default context attribute under which the Locale for the current request will be stored.

See Also:
Constant Field Values

MESSAGE_RESOURCES_KEY

public static final java.lang.String MESSAGE_RESOURCES_KEY

The default context attribute under which the MessageResources for the current request will be stored.

See Also:
Constant Field Values

MODULE_CONFIG_KEY

public static final java.lang.String MODULE_CONFIG_KEY

The default context attribute under which the ModuleConfig for the current request will be stored.

See Also:
Constant Field Values

VALID_KEY

public static final java.lang.String 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:
Constant Field Values

ACTIONS_KEY

public static final java.lang.String 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:
Constant Field Values

CATALOG_ATTR

public static final java.lang.String CATALOG_ATTR

The context attribute under which the Catalog containing our defined command chains has been stored.

See Also:
Constant Field Values

INCLUDE_PATH_INFO

public static final java.lang.String INCLUDE_PATH_INFO

The request attribute under which the path information is stored for processing during a RequestDispatcher.include() call.

See Also:
Constant Field Values

INCLUDE_SERVLET_PATH

public static final java.lang.String INCLUDE_SERVLET_PATH

The request attribute under which the servlet path is stored for processing during a RequestDispatcher.include() call.

See Also:
Constant Field Values
Constructor Detail

Constants

public Constants()


Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.