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.
Perform a recursive search for an ExceptionConfig registered for
this class, or for any superclass. This should only be used in the
case when an ActionConfig is not available; otherwise, use
ActionConfig.findException(Class) to preserve the search
order.
Parameters: type - Exception class name to find a configuration for See Also:ActionConfig See Also: findException(Class)
Return the form bean configuration for the specified key, if any;
otherwise return null.
Parameters: name - Name of the form bean configuration to return
Has this module been completely configured yet. Once this flag has
been set, any attempt to modify the configuration will return an
IllegalStateException.
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.
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.
Parameters: prefix - The prefix of the context-relative portion of the requestURI.