| 
 | |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object | +--org.apache.struts.Globals
Global manifest constants for the entire Struts Framework.
Many of these constants were initially defined in Action,
 but were moved here so that they could be referenced without referencing
 the Action class itself.  For backwards compatibility,
 constant references there point at this class, and the constant values
 themselves have not changed.
| Field Summary | |
| static java.lang.String | ACTION_SERVLET_KEYThe context attributes key under which our ActionServletinstance will be stored. | 
| static java.lang.String | APPLICATION_KEYDeprecated. Use MODULE_KEY | 
| static java.lang.String | CANCEL_KEYThe request attributes key under which a boolean truevalue should be stored if this request was cancelled. | 
| static java.lang.String | DATA_SOURCE_KEYThe context attributes key under which our default configured data source (which must implement javax.sql.DataSource) is stored,
 if one is configured for this module. | 
| static java.lang.String | ERROR_KEYThe request attributes key under which your action should store an org.apache.struts.action.ActionErrorsobject, if you
 are using the corresponding custom tag library elements. | 
| static java.lang.String | EXCEPTION_KEYThe request attributes key under which Struts custom tags might store a Throwablethat caused them to report a JspException at
 runtime. | 
| static java.lang.String | FORM_BEANS_KEYDeprecated. Replaced by collection in ModuleConfig | 
| static java.lang.String | FORWARDS_KEYDeprecated. Replaced by collection in ModuleConfig. | 
| static java.lang.String | LOCALE_KEYThe session attributes key under which the user's selected java.util.Localeis stored, if any. | 
| static java.lang.String | MAPPING_KEYThe request attributes key under which our org.apache.struts.ActionMappinginstance
 is passed. | 
| static java.lang.String | MAPPINGS_KEYDeprecated. Replaced by collection in ModuleConfig | 
| static java.lang.String | MESSAGE_KEYThe request attributes key under which your action should store an org.apache.struts.action.ActionMessagesobject, if you
 are using the corresponding custom tag library elements. | 
| static java.lang.String | MESSAGES_KEYThe base of the context attributes key under which our module MessageResourceswill be stored. | 
| static java.lang.String | MODULE_KEYThe base of the context attributes key under which our ModuleConfigdata structure will be stored. | 
| static java.lang.String | MULTIPART_KEYThe request attributes key under which our multipart class is stored. | 
| static java.lang.String | PLUG_INS_KEYThe base of the context attributes key under which an array of PlugIninstances will be stored. | 
| static java.lang.String | REQUEST_PROCESSOR_KEYThe base of the context attributes key under which our RequestProcessorinstance will be stored. | 
| static java.lang.String | SERVLET_KEYThe context attributes key under which we store the mapping defined for our controller serlet, which will be either a path-mapped pattern ( /action/*) or an extension mapped pattern
 (*.do). | 
| static java.lang.String | TRANSACTION_TOKEN_KEYThe session attributes key under which our transaction token is stored, if it is used. | 
| static java.lang.String | XHTML_KEYThe page attributes key under which xhtml status is stored. | 
| Constructor Summary | |
| Globals() | |
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Field Detail | 
public static final java.lang.String ACTION_SERVLET_KEY
ActionServlet
 instance will be stored.
public static final java.lang.String APPLICATION_KEY
The base of the context attributes key under which our
 ModuleConfig data structure will be stored.  This
 will be suffixed with the actual module prefix (including the
 leading "/" character) to form the actual attributes key.
For each request processed by the controller servlet, the
 ModuleConfig object for the module selected by
 the request URI currently being processed will also be exposed under
 this key as a request attribute.
public static final java.lang.String CANCEL_KEY
The request attributes key under which a boolean true
 value should be stored if this request was cancelled.
public static final java.lang.String MODULE_KEY
The base of the context attributes key under which our
 ModuleConfig data structure will be stored.  This
 will be suffixed with the actual module prefix (including the
 leading "/" character) to form the actual attributes key.
For each request processed by the controller servlet, the
 ModuleConfig object for the module selected by
 the request URI currently being processed will also be exposed under
 this key as a request attribute.
public static final java.lang.String DATA_SOURCE_KEY
javax.sql.DataSource) is stored,
 if one is configured for this module.
public static final java.lang.String ERROR_KEY
org.apache.struts.action.ActionErrors object, if you
 are using the corresponding custom tag library elements.
public static final java.lang.String EXCEPTION_KEY
Throwable that caused them to report a JspException at
 runtime.  This value can be used on an error page to provide more
 detailed information about what really went wrong.
public static final java.lang.String FORM_BEANS_KEY
org.apache.struts.action.ActionFormBeans collection
 is normally stored, unless overridden when initializing our
 ActionServlet.
public static final java.lang.String FORWARDS_KEY
org.apache.struts.action.ActionForwards collection
 is normally stored, unless overridden when initializing our
 ActionServlet.
public static final java.lang.String LOCALE_KEY
java.util.Locale is stored, if any.  If no such
 attribute is found, the system default locale
 will be used when retrieving internationalized messages.  If used, this
 attribute is typically set during user login processing.
public static final java.lang.String MAPPING_KEY
org.apache.struts.ActionMapping instance
 is passed.
public static final java.lang.String MAPPINGS_KEY
org.apache.struts.action.ActionMappings collection
 is normally stored, unless overridden when initializing our
 ActionServlet.
public static final java.lang.String MESSAGE_KEY
org.apache.struts.action.ActionMessages object, if you
 are using the corresponding custom tag library elements.
public static final java.lang.String MESSAGES_KEY
The base of the context attributes key under which our
 module MessageResources will be stored.  This
 will be suffixed with the actual module prefix (including the
 leading "/" character) to form the actual resources key.
For each request processed by the controller servlet, the
 MessageResources object for the module selected by
 the request URI currently being processed will also be exposed under
 this key as a request attribute.
public static final java.lang.String MULTIPART_KEY
public static final java.lang.String PLUG_INS_KEY
The base of the context attributes key under which an array of
 PlugIn instances will be stored.  This
 will be suffixed with the actual module prefix (including the
 leading "/" character) to form the actual attributes key.
public static final java.lang.String REQUEST_PROCESSOR_KEY
The base of the context attributes key under which our
 RequestProcessor instance will be stored.  This
 will be suffixed with the actual module prefix (including the
 leading "/" character) to form the actual attributes key.
public static final java.lang.String SERVLET_KEY
/action/*) or an extension mapped pattern
 (*.do).
public static final java.lang.String TRANSACTION_TOKEN_KEY
public static final java.lang.String XHTML_KEY
| Constructor Detail | 
public Globals()
| 
 | |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||