Package org.dlese.dpc.schemedit.struts
Class MyModuleConfig
java.lang.Object
org.apache.struts.config.impl.ModuleConfigImpl
org.dlese.dpc.schemedit.struts.MyModuleConfig
- All Implemented Interfaces:
Serializable,org.apache.struts.config.ModuleConfig
public class MyModuleConfig
extends org.apache.struts.config.impl.ModuleConfigImpl
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: 2009/03/20 23:33:57 $
- See Also:
-
Field Summary
Fields inherited from class org.apache.struts.config.impl.ModuleConfigImpl
actionConfigList, actionConfigs, actionFormBeanClass, actionForwardClass, actionMappingClass, configured, controllerConfig, dataSources, exceptions, formBeans, forwards, matcher, messageResources, plugIns, prefix -
Constructor Summary
ConstructorsConstructorDescriptionMyModuleConfig(String prefix) Construct an ModuleConfigImpl object according to the specified parameter values. -
Method Summary
Methods inherited from class org.apache.struts.config.impl.ModuleConfigImpl
addActionConfig, addDataSourceConfig, addExceptionConfig, addFormBeanConfig, addForwardConfig, addMessageResourcesConfig, addPlugInConfig, findActionConfig, findActionConfigs, findDataSourceConfig, findDataSourceConfigs, findExceptionConfig, findExceptionConfigs, findFormBeanConfig, findFormBeanConfigs, findForwardConfig, findForwardConfigs, findMessageResourcesConfig, findMessageResourcesConfigs, findPlugInConfigs, freeze, getActionFormBeanClass, getActionForwardClass, getActionMappingClass, getConfigured, getControllerConfig, getPrefix, removeActionConfig, removeDataSourceConfig, removeExceptionConfig, removeFormBeanConfig, removeForwardConfig, removeMessageResourcesConfig, setActionFormBeanClass, setActionForwardClass, setActionMappingClass, setControllerConfig, setPrefix
-
Constructor Details
-
MyModuleConfig
Construct an ModuleConfigImpl object according to the specified parameter values.- Parameters:
prefix- Context-relative URI prefix for this module
-