org.apache.struts
クラス Globals

java.lang.Object
  拡張org.apache.struts.Globals
すべての実装インタフェース:
java.io.Serializable

public class Globals
extends java.lang.Object
implements java.io.Serializable

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.

バージョン:
$Revision: 1.2 $ $Date: 2003/12/09 13:46:16 $
作成者:
Craig R. McClanahan
関連項目:
直列化された形式
翻訳者:
校正者:

フィールドの概要
static java.lang.String ACTION_SERVLET_KEY
          The context attributes key under which our ActionServlet instance will be stored.
static java.lang.String APPLICATION_KEY
          推奨されていません。 Use MODULE_KEY
static java.lang.String CANCEL_KEY
          The request attributes key under which a boolean true value should be stored if this request was cancelled.
static java.lang.String DATA_SOURCE_KEY
          The 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_KEY
          The request attributes key under which your action should store an org.apache.struts.action.ActionErrors object, if you are using the corresponding custom tag library elements.
static java.lang.String EXCEPTION_KEY
          The request attributes key under which Struts custom tags might store a Throwable that caused them to report a JspException at runtime.
static java.lang.String FORM_BEANS_KEY
          推奨されていません。 Replaced by collection in ModuleConfig
static java.lang.String FORWARDS_KEY
          推奨されていません。 Replaced by collection in ModuleConfig.
static java.lang.String LOCALE_KEY
          The session attributes key under which the user's selected java.util.Locale is stored, if any.
static java.lang.String MAPPING_KEY
          The request attributes key under which our org.apache.struts.ActionMapping instance is passed.
static java.lang.String MAPPINGS_KEY
          推奨されていません。 Replaced by collection in ModuleConfig
static java.lang.String MESSAGE_KEY
          The request attributes key under which your action should store an org.apache.struts.action.ActionMessages object, if you are using the corresponding custom tag library elements.
static java.lang.String MESSAGES_KEY
          The base of the context attributes key under which our module MessageResources will be stored.
static java.lang.String MODULE_KEY
          The base of the context attributes key under which our ModuleConfig data structure will be stored.
static java.lang.String MULTIPART_KEY
          The request attributes key under which our multipart class is stored.
static java.lang.String PLUG_INS_KEY
          The base of the context attributes key under which an array of PlugIn instances will be stored.
static java.lang.String REQUEST_PROCESSOR_KEY
          The base of the context attributes key under which our RequestProcessor instance will be stored.
static java.lang.String 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).
static java.lang.String TRANSACTION_TOKEN_KEY
          The session attributes key under which our transaction token is stored, if it is used.
static java.lang.String XHTML_KEY
          The page attributes key under which xhtml status is stored.
 
コンストラクタの概要
Globals()
           
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

ACTION_SERVLET_KEY

public static final java.lang.String ACTION_SERVLET_KEY
The context attributes key under which our ActionServlet instance will be stored.

導入されたバージョン:
Struts 1.1
関連項目:
定数フィールド値

APPLICATION_KEY

public static final java.lang.String APPLICATION_KEY
推奨されていません。 Use 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.

導入されたバージョン:
Struts 1.1
関連項目:
定数フィールド値

CANCEL_KEY

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.

導入されたバージョン:
Struts 1.1
関連項目:
定数フィールド値

MODULE_KEY

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.

導入されたバージョン:
Struts 1.1
関連項目:
定数フィールド値

DATA_SOURCE_KEY

public static final java.lang.String DATA_SOURCE_KEY
The 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.

関連項目:
定数フィールド値

ERROR_KEY

public static final java.lang.String ERROR_KEY
The request attributes key under which your action should store an org.apache.struts.action.ActionErrors object, if you are using the corresponding custom tag library elements.

関連項目:
定数フィールド値

EXCEPTION_KEY

public static final java.lang.String EXCEPTION_KEY
The request attributes key under which Struts custom tags might store a 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.

関連項目:
定数フィールド値

FORM_BEANS_KEY

public static final java.lang.String FORM_BEANS_KEY
推奨されていません。 Replaced by collection in ModuleConfig

The context attributes key under which our org.apache.struts.action.ActionFormBeans collection is normally stored, unless overridden when initializing our ActionServlet.

関連項目:
定数フィールド値

FORWARDS_KEY

public static final java.lang.String FORWARDS_KEY
推奨されていません。 Replaced by collection in ModuleConfig.

The context attributes key under which our org.apache.struts.action.ActionForwards collection is normally stored, unless overridden when initializing our ActionServlet.

関連項目:
定数フィールド値

LOCALE_KEY

public static final java.lang.String LOCALE_KEY
The session attributes key under which the user's selected 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.

関連項目:
定数フィールド値

MAPPING_KEY

public static final java.lang.String MAPPING_KEY
The request attributes key under which our org.apache.struts.ActionMapping instance is passed.

関連項目:
定数フィールド値

MAPPINGS_KEY

public static final java.lang.String MAPPINGS_KEY
推奨されていません。 Replaced by collection in ModuleConfig

The context attributes key under which our org.apache.struts.action.ActionMappings collection is normally stored, unless overridden when initializing our ActionServlet.

関連項目:
定数フィールド値

MESSAGE_KEY

public static final java.lang.String MESSAGE_KEY
The request attributes key under which your action should store an org.apache.struts.action.ActionMessages object, if you are using the corresponding custom tag library elements.

導入されたバージョン:
Struts 1.1
関連項目:
定数フィールド値

MESSAGES_KEY

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.

関連項目:
定数フィールド値

MULTIPART_KEY

public static final java.lang.String MULTIPART_KEY
The request attributes key under which our multipart class is stored.

関連項目:
定数フィールド値

PLUG_INS_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.

導入されたバージョン:
Struts 1.1
関連項目:
定数フィールド値

REQUEST_PROCESSOR_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.

導入されたバージョン:
Struts 1.1
関連項目:
定数フィールド値

SERVLET_KEY

public static final java.lang.String 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).

関連項目:
定数フィールド値

TRANSACTION_TOKEN_KEY

public static final java.lang.String TRANSACTION_TOKEN_KEY
The session attributes key under which our transaction token is stored, if it is used.

関連項目:
定数フィールド値

XHTML_KEY

public static final java.lang.String 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.

導入されたバージョン:
Struts 1.1
関連項目:
定数フィールド値
コンストラクタの詳細

Globals

public Globals()


このドキュメントは、Ja-Jakartaにより訳されました。コメントがある場合は、report@jajakarta.orgまでお願いします。
Copyright (C) 2000-2003 - Apache Software Foundation