|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
org.apache.struts.config.impl Class ModuleConfigImpl
java.lang.Object | +--org.apache.struts.config.impl.ModuleConfigImpl
- All Implemented Interfaces:
- ModuleConfig, java.io.Serializable
- public class ModuleConfigImpl
- extends java.lang.Object
- implements java.io.Serializable, ModuleConfig
The collection of static configuration information that describes a Struts-based module. Multiple modules are identified by a prefix at the beginning of the context relative portion of the request URI. If no module prefix can be matched, the default configuration (with a prefix equal to a zero-length string) is selected, which is elegantly backwards compatible with the previous Struts behavior that only supported one module.
- Since:
- Struts 1.1
- Version:
- $Rev: 54929 $ $Date: 2004-10-16 17:38:42 +0100 (Sat, 16 Oct 2004) $
- See Also:
- Serialized Form
Field Summary | |
protected java.util.List |
actionConfigList
The set of action configurations for this module, if any, listed in the order in which they are added. |
protected java.util.HashMap |
actionConfigs
The set of action configurations for this module, if any, keyed by the path property. |
protected java.lang.String |
actionFormBeanClass
The default class name to be used when creating action form bean instances. |
protected java.lang.String |
actionForwardClass
The default class name to be used when creating action forward instances. |
protected java.lang.String |
actionMappingClass
The default class name to be used when creating action mapping instances. |
protected boolean |
configured
Has this module been completely configured yet. |
protected ControllerConfig |
controllerConfig
The controller configuration object for this module. |
protected java.util.HashMap |
dataSources
The set of JDBC data source configurations for this module, if any, keyed by the key property. |
protected java.util.HashMap |
exceptions
The set of exception handling configurations for this module, if any, keyed by the type property. |
protected java.util.HashMap |
formBeans
The set of form bean configurations for this module, if any, keyed by the name property. |
protected java.util.HashMap |
forwards
The set of global forward configurations for this module, if any, keyed by the name property. |
protected ActionConfigMatcher |
matcher
Matches action config paths against compiled wildcard patterns |
protected java.util.HashMap |
messageResources
The set of message resources configurations for this module, if any, keyed by the key property. |
protected java.util.ArrayList |
plugIns
The set of configured plug-in Actions for this module, if any, in the order they were declared and configured. |
protected java.lang.String |
prefix
The prefix of the context-relative portion of the request URI, used to select this configuration versus others supported by the controller servlet. |
Constructor Summary | |
ModuleConfigImpl(java.lang.String prefix)
Construct an ModuleConfigImpl object according to the specified parameter values. |
Method Summary | |
void |
addActionConfig(ActionConfig config)
Add a new ActionConfig instance to the set associated
with this module. |
void |
addDataSourceConfig(DataSourceConfig config)
Add a new DataSourceConfig instance to the set associated
with this module. |
void |
addExceptionConfig(ExceptionConfig config)
Add a new ExceptionConfig instance to the set associated
with this module. |
void |
addFormBeanConfig(FormBeanConfig config)
Add a new FormBeanConfig instance to the set associated
with this module. |
void |
addForwardConfig(ForwardConfig config)
Add a new ForwardConfig instance to the set of global
forwards associated with this module. |
void |
addMessageResourcesConfig(MessageResourcesConfig config)
Add a new MessageResourcesConfig instance to the set
associated with this module. |
void |
addPlugInConfig(PlugInConfig plugInConfig)
Add a newly configured PlugInConfig instance to the set of
plug-in Actions for this module. |
ActionConfig |
findActionConfig(java.lang.String path)
Return the action configuration for the specified path, first looking a direct match, then if none found, a wildcard pattern match; otherwise return null . |
ActionConfig[] |
findActionConfigs()
Return the action configurations for this module. |
DataSourceConfig |
findDataSourceConfig(java.lang.String key)
Return the data source configuration for the specified key, if any; otherwise return null . |
DataSourceConfig[] |
findDataSourceConfigs()
Return the data source configurations for this module. |
ExceptionConfig |
findExceptionConfig(java.lang.String type)
Return the exception configuration for the specified type, if any; otherwise return null . |
ExceptionConfig[] |
findExceptionConfigs()
Return the exception configurations for this module. |
FormBeanConfig |
findFormBeanConfig(java.lang.String name)
Return the form bean configuration for the specified key, if any; otherwise return null . |
FormBeanConfig[] |
findFormBeanConfigs()
Return the form bean configurations for this module. |
ForwardConfig |
findForwardConfig(java.lang.String name)
Return the forward configuration for the specified key, if any; otherwise return null . |
ForwardConfig[] |
findForwardConfigs()
Return the form bean configurations for this module. |
MessageResourcesConfig |
findMessageResourcesConfig(java.lang.String key)
Return the message resources configuration for the specified key, if any; otherwise return null . |
MessageResourcesConfig[] |
findMessageResourcesConfigs()
Return the message resources configurations for this module. |
PlugInConfig[] |
findPlugInConfigs()
Return the configured plug-in actions for this module. |
void |
freeze()
Freeze the configuration of this module. |
java.lang.String |
getActionFormBeanClass()
The default class name to be used when creating action form bean instances. |
java.lang.String |
getActionForwardClass()
The default class name to be used when creating action forward instances. |
java.lang.String |
getActionMappingClass()
The default class name to be used when creating action mapping instances. |
boolean |
getConfigured()
Has this module been completely configured yet. |
ControllerConfig |
getControllerConfig()
The controller configuration object for this module. |
java.lang.String |
getPrefix()
The prefix of the context-relative portion of the request URI, used to select this configuration versus others supported by the controller servlet. |
void |
removeActionConfig(ActionConfig config)
Remove the specified action configuration instance. |
void |
removeDataSourceConfig(DataSourceConfig config)
Remove the specified data source configuration instance. |
void |
removeExceptionConfig(ExceptionConfig config)
Remove the specified exception configuration instance. |
void |
removeFormBeanConfig(FormBeanConfig config)
Remove the specified form bean configuration instance. |
void |
removeForwardConfig(ForwardConfig config)
Remove the specified forward configuration instance. |
void |
removeMessageResourcesConfig(MessageResourcesConfig config)
Remove the specified message resources configuration instance. |
void |
setActionFormBeanClass(java.lang.String actionFormBeanClass)
The default class name to be used when creating action form bean instances. |
void |
setActionForwardClass(java.lang.String actionForwardClass)
The default class name to be used when creating action forward instances. |
void |
setActionMappingClass(java.lang.String actionMappingClass)
The default class name to be used when creating action mapping instances. |
void |
setControllerConfig(ControllerConfig cc)
The controller configuration object for this module. |
void |
setPrefix(java.lang.String prefix)
The prefix of the context-relative portion of the request URI, used to select this configuration versus others supported by the controller servlet. |
Methods inherited from class java.lang.Object |
|
Field Detail |
actionConfigs
protected java.util.HashMap actionConfigs
- The set of action configurations for this module, if any,
keyed by the
path
property.
actionConfigList
protected java.util.List actionConfigList
- The set of action configurations for this module, if any, listed in the order in which they are added.
dataSources
protected java.util.HashMap dataSources
- The set of JDBC data source configurations for this
module, if any, keyed by the
key
property.
exceptions
protected java.util.HashMap exceptions
- The set of exception handling configurations for this
module, if any, keyed by the
type
property.
formBeans
protected java.util.HashMap formBeans
- The set of form bean configurations for this module, if any,
keyed by the
name
property.
forwards
protected java.util.HashMap forwards
- The set of global forward configurations for this module, if any,
keyed by the
name
property.
messageResources
protected java.util.HashMap messageResources
- The set of message resources configurations for this
module, if any, keyed by the
key
property.
plugIns
protected java.util.ArrayList plugIns
- The set of configured plug-in Actions for this module, if any, in the order they were declared and configured.
configured
protected boolean configured
- Has this module been completely configured yet. Once this flag has been set, any attempt to modify the configuration will return an IllegalStateException.
controllerConfig
protected ControllerConfig controllerConfig
- The controller configuration object for this module.
prefix
protected java.lang.String prefix
- The prefix of the context-relative portion of the request URI, used to select this configuration versus others supported by the controller servlet. A configuration with a prefix of a zero-length String is the default configuration for this web module.
actionFormBeanClass
protected java.lang.String actionFormBeanClass
- The default class name to be used when creating action form bean instances.
actionMappingClass
protected java.lang.String actionMappingClass
- The default class name to be used when creating action mapping instances.
actionForwardClass
protected java.lang.String actionForwardClass
- The default class name to be used when creating action forward instances.
matcher
protected ActionConfigMatcher matcher
- Matches action config paths against compiled wildcard patterns
Constructor Detail |
ModuleConfigImpl
public ModuleConfigImpl(java.lang.String prefix)
- Construct an ModuleConfigImpl object according to the specified parameter values.
- Parameters:
prefix
- Context-relative URI prefix for this module
Method Detail |
getConfigured
public boolean getConfigured()
- Has this module been completely configured yet. Once this flag has been set, any attempt to modify the configuration will return an IllegalStateException.
- Specified by:
getConfigured
in interfaceModuleConfig
getControllerConfig
public ControllerConfig getControllerConfig()
- The controller configuration object for this module.
- Specified by:
getControllerConfig
in interfaceModuleConfig
setControllerConfig
public void setControllerConfig(ControllerConfig cc)
- The controller configuration object for this module.
- Specified by:
setControllerConfig
in interfaceModuleConfig
- Parameters:
cc
- The controller configuration object for this module.
getPrefix
public java.lang.String getPrefix()
- The prefix of the context-relative portion of the request URI, used to select this configuration versus others supported by the controller servlet. A configuration with a prefix of a zero-length String is the default configuration for this web module.
- Specified by:
getPrefix
in interfaceModuleConfig
setPrefix
public void setPrefix(java.lang.String prefix)
- The prefix of the context-relative portion of the request URI, used to select this configuration versus others supported by the controller servlet. A configuration with a prefix of a zero-length String is the default configuration for this web module.
- Specified by:
setPrefix
in interfaceModuleConfig
- Following copied from interface:
org.apache.struts.config.ModuleConfig
- Parameters:
prefix
- The prefix of the context-relative portion of the request URI.
getActionFormBeanClass
public java.lang.String getActionFormBeanClass()
- The default class name to be used when creating action form bean instances.
- Specified by:
getActionFormBeanClass
in interfaceModuleConfig
setActionFormBeanClass
public void setActionFormBeanClass(java.lang.String actionFormBeanClass)
- The default class name to be used when creating action form bean instances.
- Specified by:
setActionFormBeanClass
in interfaceModuleConfig
- Parameters:
actionFormBeanClass
- default class name to be used when creating action form bean instances.
getActionMappingClass
public java.lang.String getActionMappingClass()
- The default class name to be used when creating action mapping instances.
- Specified by:
getActionMappingClass
in interfaceModuleConfig
setActionMappingClass
public void setActionMappingClass(java.lang.String actionMappingClass)
- The default class name to be used when creating action mapping instances.
- Specified by:
setActionMappingClass
in interfaceModuleConfig
- Parameters:
actionMappingClass
- default class name to be used when creating action mapping instances.
addActionConfig
public void addActionConfig(ActionConfig config)
- Add a new
ActionConfig
instance to the set associated with this module. - Specified by:
addActionConfig
in interfaceModuleConfig
- Parameters:
config
- The new configuration instance to be added- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
addDataSourceConfig
public void addDataSourceConfig(DataSourceConfig config)
- Add a new
DataSourceConfig
instance to the set associated with this module. - Specified by:
addDataSourceConfig
in interfaceModuleConfig
- Parameters:
config
- The new configuration instance to be added- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
addExceptionConfig
public void addExceptionConfig(ExceptionConfig config)
- Add a new
ExceptionConfig
instance to the set associated with this module. - Specified by:
addExceptionConfig
in interfaceModuleConfig
- Parameters:
config
- The new configuration instance to be added- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
addFormBeanConfig
public void addFormBeanConfig(FormBeanConfig config)
- Add a new
FormBeanConfig
instance to the set associated with this module. - Specified by:
addFormBeanConfig
in interfaceModuleConfig
- Parameters:
config
- The new configuration instance to be added- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
getActionForwardClass
public java.lang.String getActionForwardClass()
- The default class name to be used when creating action forward instances.
- Specified by:
getActionForwardClass
in interfaceModuleConfig
setActionForwardClass
public void setActionForwardClass(java.lang.String actionForwardClass)
- The default class name to be used when creating action forward instances.
- Specified by:
setActionForwardClass
in interfaceModuleConfig
- Parameters:
actionForwardClass
- default class name to be used when creating action forward instances.
addForwardConfig
public void addForwardConfig(ForwardConfig config)
- Add a new
ForwardConfig
instance to the set of global forwards associated with this module. - Specified by:
addForwardConfig
in interfaceModuleConfig
- Parameters:
config
- The new configuration instance to be added- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
addMessageResourcesConfig
public void addMessageResourcesConfig(MessageResourcesConfig config)
- Add a new
MessageResourcesConfig
instance to the set associated with this module. - Specified by:
addMessageResourcesConfig
in interfaceModuleConfig
- Parameters:
config
- The new configuration instance to be added- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
addPlugInConfig
public void addPlugInConfig(PlugInConfig plugInConfig)
- Add a newly configured
PlugInConfig
instance to the set of plug-in Actions for this module. - Specified by:
addPlugInConfig
in interfaceModuleConfig
- Parameters:
plugInConfig
- The new configuration instance to be added
findActionConfig
public ActionConfig findActionConfig(java.lang.String path)
- Return the action configuration for the specified path, first looking
a direct match, then if none found, a wildcard pattern match;
otherwise return
null
. - Specified by:
findActionConfig
in interfaceModuleConfig
- Parameters:
path
- Path of the action configuration to return
findActionConfigs
public ActionConfig[] findActionConfigs()
- Return the action configurations for this module. If there are none, a zero-length array is returned.
- Specified by:
findActionConfigs
in interfaceModuleConfig
findDataSourceConfig
public DataSourceConfig findDataSourceConfig(java.lang.String key)
- Return the data source configuration for the specified key, if any;
otherwise return
null
. - Specified by:
findDataSourceConfig
in interfaceModuleConfig
- Parameters:
key
- Key of the data source configuration to return
findDataSourceConfigs
public DataSourceConfig[] findDataSourceConfigs()
- Return the data source configurations for this module. If there are none, a zero-length array is returned.
- Specified by:
findDataSourceConfigs
in interfaceModuleConfig
findExceptionConfig
public ExceptionConfig findExceptionConfig(java.lang.String type)
- Return the exception configuration for the specified type, if any;
otherwise return
null
. - Specified by:
findExceptionConfig
in interfaceModuleConfig
- Parameters:
type
- Exception class name to find a configuration for
findExceptionConfigs
public ExceptionConfig[] findExceptionConfigs()
- Return the exception configurations for this module. If there are none, a zero-length array is returned.
- Specified by:
findExceptionConfigs
in interfaceModuleConfig
findFormBeanConfig
public FormBeanConfig findFormBeanConfig(java.lang.String name)
- Return the form bean configuration for the specified key, if any;
otherwise return
null
. - Specified by:
findFormBeanConfig
in interfaceModuleConfig
- Parameters:
name
- Name of the form bean configuration to return
findFormBeanConfigs
public FormBeanConfig[] findFormBeanConfigs()
- Return the form bean configurations for this module. If there are none, a zero-length array is returned.
- Specified by:
findFormBeanConfigs
in interfaceModuleConfig
findForwardConfig
public ForwardConfig findForwardConfig(java.lang.String name)
- Return the forward configuration for the specified key, if any;
otherwise return
null
. - Specified by:
findForwardConfig
in interfaceModuleConfig
- Parameters:
name
- Name of the forward configuration to return
findForwardConfigs
public ForwardConfig[] findForwardConfigs()
- Return the form bean configurations for this module. If there are none, a zero-length array is returned.
- Specified by:
findForwardConfigs
in interfaceModuleConfig
findMessageResourcesConfig
public MessageResourcesConfig findMessageResourcesConfig(java.lang.String key)
- Return the message resources configuration for the specified key,
if any; otherwise return
null
. - Specified by:
findMessageResourcesConfig
in interfaceModuleConfig
- Parameters:
key
- Key of the data source configuration to return
findMessageResourcesConfigs
public MessageResourcesConfig[] findMessageResourcesConfigs()
- Return the message resources configurations for this module. If there are none, a zero-length array is returned.
- Specified by:
findMessageResourcesConfigs
in interfaceModuleConfig
findPlugInConfigs
public PlugInConfig[] findPlugInConfigs()
- Return the configured plug-in actions for this module. If there are none, a zero-length array is returned.
- Specified by:
findPlugInConfigs
in interfaceModuleConfig
freeze
public void freeze()
- Freeze the configuration of this module. After this method returns, any attempt to modify the configuration will return an IllegalStateException.
- Specified by:
freeze
in interfaceModuleConfig
removeActionConfig
public void removeActionConfig(ActionConfig config)
- Remove the specified action configuration instance.
- Specified by:
removeActionConfig
in interfaceModuleConfig
- Parameters:
config
- ActionConfig instance to be removed- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
removeExceptionConfig
public void removeExceptionConfig(ExceptionConfig config)
- Remove the specified exception configuration instance.
- Specified by:
removeExceptionConfig
in interfaceModuleConfig
- Parameters:
config
- ActionConfig instance to be removed- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
removeDataSourceConfig
public void removeDataSourceConfig(DataSourceConfig config)
- Remove the specified data source configuration instance.
- Specified by:
removeDataSourceConfig
in interfaceModuleConfig
- Parameters:
config
- DataSourceConfig instance to be removed- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
removeFormBeanConfig
public void removeFormBeanConfig(FormBeanConfig config)
- Remove the specified form bean configuration instance.
- Specified by:
removeFormBeanConfig
in interfaceModuleConfig
- Parameters:
config
- FormBeanConfig instance to be removed- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
removeForwardConfig
public void removeForwardConfig(ForwardConfig config)
- Remove the specified forward configuration instance.
- Specified by:
removeForwardConfig
in interfaceModuleConfig
- Parameters:
config
- ForwardConfig instance to be removed- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
removeMessageResourcesConfig
public void removeMessageResourcesConfig(MessageResourcesConfig config)
- Remove the specified message resources configuration instance.
- Specified by:
removeMessageResourcesConfig
in interfaceModuleConfig
- Parameters:
config
- MessageResourcesConfig instance to be removed- Throws:
java.lang.IllegalStateException
- if this module configuration has been frozen
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright � 2000-2005 - The Apache Software Foundation