Class Globals
- All Implemented Interfaces:
Serializable
- Version:
- $Rev$ $Date: 2005-06-18 20:27:26 -0400 (Sat, 18 Jun 2005) $
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The context attributes key under which ourActionServlet
instance will be stored.static final String
The request attributes key under which a booleantrue
value should be stored if this request was cancelled.static final String
The property under which a Cancel button press is reported.static final String
The property under which a Cancel button press is reported, if the Cancel button is rendered as an image.static final String
The request attributes key under which chaining flag is stored.static final String
The request attributes key under which your action should store anorg.apache.struts.action.ActionErrors
object, if you are using the corresponding custom tag library elements.static final String
The request attributes key under which Struts custom tags might store aThrowable
that caused them to report a JspException at runtime.static final String
The session attributes key under which the user's selectedjava.util.Locale
is stored, if any.static final String
The request attributes key under which ourorg.apache.struts.ActionMapping
instance is passed.static final String
The request attributes key under which your action should store anorg.apache.struts.action.ActionMessages
object, if you are using the corresponding custom tag library elements.static final String
The base of the context attributes key under which our moduleMessageResources
will be stored.static final String
The base of the context attributes key under which ourModuleConfig
data structure will be stored.static final String
The ServletContext attribute under which we store the module prefixes String[].static final String
The request attributes key under which our multipart class is stored.static final String
The request attribute under which we store the original URI of the request.static final String
The base of the context attributes key under which an array ofPlugIn
instances will be stored.static final String
The base of the context attributes key under which ourRequestProcessor
instance will be stored.static final String
The 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 final String
The name of the taglib package.static final String
The property under which a transaction token is reported.static final String
The session attributes key under which our transaction token is stored, if it is used.static final String
The page attributes key under which xhtml status is stored.static final String
The request attributes key under which XHTML version is stored. -
Constructor Summary
-
Method Summary
-
Field Details
-
ACTION_SERVLET_KEY
The context attributes key under which ourActionServlet
instance will be stored.- Since:
- Struts 1.1
- See Also:
-
CANCEL_KEY
The request attributes key under which a booleantrue
value should be stored if this request was cancelled.- Since:
- Struts 1.1
- See Also:
-
CHAIN_KEY
The request attributes key under which chaining flag is stored.- Since:
- Struts 1.4
- See Also:
-
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.- Since:
- Struts 1.1
- See Also:
-
MODULE_PREFIXES_KEY
The ServletContext attribute under which we store the module prefixes String[].- Since:
- Struts 1.2
- See Also:
-
ORIGINAL_URI_KEY
The request attribute under which we store the original URI of the request.- Since:
- Struts 1.3
- See Also:
-
ERROR_KEY
The request attributes key under which your action should store anorg.apache.struts.action.ActionErrors
object, if you are using the corresponding custom tag library elements.- See Also:
-
EXCEPTION_KEY
The request attributes key under which Struts custom tags might store aThrowable
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.- See Also:
-
LOCALE_KEY
The session attributes key under which the user's selectedjava.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.- See Also:
-
MAPPING_KEY
The request attributes key under which ourorg.apache.struts.ActionMapping
instance is passed.- See Also:
-
MESSAGE_KEY
The request attributes key under which your action should store anorg.apache.struts.action.ActionMessages
object, if you are using the corresponding custom tag library elements.- Since:
- Struts 1.1
- See Also:
-
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.- See Also:
-
MULTIPART_KEY
The request attributes key under which our multipart class is stored.- See Also:
-
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.- Since:
- Struts 1.1
- See Also:
-
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.- Since:
- Struts 1.1
- See Also:
-
SERVLET_KEY
The 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
).- See Also:
-
TRANSACTION_TOKEN_KEY
The session attributes key under which our transaction token is stored, if it is used.- See Also:
-
XHTML_KEY
The page attributes key under which xhtml status is stored. This may be "true" or "false". When set to true, the html tags output xhtml.- Since:
- Struts 1.1
- See Also:
-
XHTML_VERSION_KEY
The request attributes key under which XHTML version is stored. The version is stored as aBigDecimal
. The attribute has no effect ifXHTML_KEY
is not set.- Since:
- Struts 1.4
- See Also:
-
TAGLIB_PACKAGE
The name of the taglib package.- See Also:
-
CANCEL_PROPERTY
The property under which a Cancel button press is reported.- See Also:
-
CANCEL_PROPERTY_X
The property under which a Cancel button press is reported, if the Cancel button is rendered as an image.- See Also:
-
TOKEN_KEY
The property under which a transaction token is reported.- See Also:
-
-
Constructor Details
-
Globals
public Globals()
-