Uses of Class
org.apache.struts.config.BaseConfig

Packages that use BaseConfig
Package
Description
The action package is the core of the struts framework, providing the "Controller" aspect of a MVC model.
The "config" package contains configuration objects that correspond to elements that may be specified in the struts-config.xml module configuration file.
Provides default implementation classes for the configuration objects.
  • Uses of BaseConfig in org.apache.struts.action

    Modifier and Type
    Class
    Description
    class 
    An ActionFormBean is the definition of a form bean that is loaded from a <form-bean> element in the Struts configuration file.
    class 
    An ActionForward represents a destination to which the controller, RequestProcessor, might be directed to perform a RequestDispatcher.forward or HttpServletResponse.sendRedirect to, as a result of processing activities of an Action class.
    class 
    An ActionMapping represents the information that the controller, RequestProcessor, knows about the mapping of a particular request to an instance of a particular Action class.
    class 
    A subclass of ActionForward which is designed for use in redirecting requests, with support for adding parameters at runtime.
    class 
    A subclass of ActionForward that defaults the redirect attribute to false.
    class 
    A subclass of ActionForward that defaults the redirect attribute to true.
    class 
    Subclass of ActionMapping that defaults the form bean scope to request.
    class 
    Subclass of ActionMapping that defaults the form bean scope to session.
  • Uses of BaseConfig in org.apache.struts.config

    Modifier and Type
    Class
    Description
    class 
    A JavaBean representing the configuration information of an <action> element from a Struts module configuration file.
    class 
    A JavaBean representing the configuration information of a <controller> element in a Struts configuration file.
    class 
    A JavaBean representing the configuration information of an <exception> element from a Struts configuration file.
    class 
    A JavaBean representing the configuration information of a <form-bean> element in a Struts configuration file.
    class 
    A JavaBean representing the configuration information of a <form-property> element in a Struts configuration file.
    class 
    A JavaBean representing the configuration information of a <forward> element from a Struts configuration file.
    class 
    A JavaBean representing the configuration information of a <message-resources> element in a Struts configuration file.
    Methods in org.apache.struts.config with parameters of type BaseConfig
    Modifier and Type
    Method
    Description
    protected void
    BaseConfig.inheritProperties(BaseConfig baseConfig)
    Compare the properties of this config with that of the given and copy those that are not present.
    void
    ModuleConfigPostProcessor.postProcessAfterInitialization(BaseConfig config, ModuleConfig moduleConfig)
    Applies this post-processor to the specified configuration object after it has been initialized by Struts but before it is frozen.
    void
    ModuleConfigPostProcessor.postProcessBeforeInitialization(BaseConfig config, ModuleConfig moduleConfig)
    Applies this post-processor to the specified configuration object before it has been initialized and processed by Struts (such as heirarchy extensions).
  • Uses of BaseConfig in org.apache.struts.config.impl

    Modifier and Type
    Class
    Description
    class 
    The collection of static configuration information that describes a Struts-based module.