|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Configuration | |
---|---|
net.sourceforge.stripes.config | This package provides Configuration services for Stripes, including interfaces for locating configured components and configuration parameters. |
net.sourceforge.stripes.controller | This package contains classes which form the core internals of Stripes. |
net.sourceforge.stripes.controller.multipart | Contains classes for parsing and dealing with multipart/form-data requests. |
net.sourceforge.stripes.exception | Contains interfaces and implementations of exception handling strategy classes. |
net.sourceforge.stripes.format | Contains functionality for integrating formatting of Java objects with the Stripes tag library. |
net.sourceforge.stripes.integration.spring | Provides classes for integrating a Stripes application with Spring, primarily by injecting Spring beans into ActionBeans. |
net.sourceforge.stripes.localization | This package is used by Stripes to provide localization capabilities to application. |
net.sourceforge.stripes.tag | Contains implementation classes for all the Stripes custom tags and interfaces for overriding the strategy used to (re-)populate tag values and rendering tags in case of validation errors. |
net.sourceforge.stripes.validation | This package contains interfaces and implementations of error message classes and of classes that convert Strings to rich objects, providing validation during the conversion. |
Uses of Configuration in net.sourceforge.stripes.config |
---|
Classes in net.sourceforge.stripes.config that implement Configuration | |
---|---|
class |
DefaultConfiguration
Centralized location for defaults for all Configuration properties. |
class |
RuntimeConfiguration
Configuration class that uses the BootstrapPropertyResolver to look for configuration values, and when it cannot find a value, falls back on the DefaultConfiguration to supply default values. |
Methods in net.sourceforge.stripes.config with parameters of type Configuration | |
---|---|
void |
ConfigurableComponent.init(Configuration configuration)
Invoked directly after instantiation to allow the configured component to perform one time initialization. |
Uses of Configuration in net.sourceforge.stripes.controller |
---|
Methods in net.sourceforge.stripes.controller that return Configuration | |
---|---|
protected Configuration |
AnnotatedClassActionResolver.getConfiguration()
Provides subclasses with access to the configuration object. |
protected Configuration |
DefaultActionBeanContextFactory.getConfiguration()
|
protected Configuration |
DefaultActionBeanPropertyBinder.getConfiguration()
Returns the Configuration object that was passed to the init() method. |
static Configuration |
StripesFilter.getConfiguration()
Returns the Configuration that is being used to process the current request. |
Configuration |
StripesFilter.getInstanceConfiguration()
Returns the configuration for this instance of the StripesFilter for any class that has a reference to the filter. |
Methods in net.sourceforge.stripes.controller with parameters of type Configuration | |
---|---|
void |
AnnotatedClassActionResolver.init(Configuration configuration)
Scans the classpath of the current classloader (not including parents) to find implementations of the ActionBean interface. |
void |
DefaultActionBeanContextFactory.init(Configuration configuration)
Stores the configuration, and looks up the ActionBeanContext class specified. |
void |
DefaultActionBeanPropertyBinder.init(Configuration configuration)
Looks up and caches in a useful form the metadata necessary to perform validations as properties are bound to the bean. |
void |
NameBasedActionResolver.init(Configuration configuration)
First invokes the parent classes init() method and then quietly adds a specialized ActionBean to the set of ActionBeans the resolver is managing. |
protected void |
DefaultActionBeanContextFactory.setConfiguration(Configuration configuration)
|
Uses of Configuration in net.sourceforge.stripes.controller.multipart |
---|
Methods in net.sourceforge.stripes.controller.multipart with parameters of type Configuration | |
---|---|
void |
DefaultMultipartWrapperFactory.init(Configuration config)
Invoked directly after instantiation to allow the configured component to perform one time initialization. |
Uses of Configuration in net.sourceforge.stripes.exception |
---|
Methods in net.sourceforge.stripes.exception that return Configuration | |
---|---|
protected Configuration |
DefaultExceptionHandler.getConfiguration()
Provides subclasses with access to the configuration. |
Methods in net.sourceforge.stripes.exception with parameters of type Configuration | |
---|---|
void |
DefaultExceptionHandler.init(Configuration configuration)
Stores the configuration and examines the handler for usable delegate methods. |
void |
DelegatingExceptionHandler.init(Configuration configuration)
Looks up the filters as defined in the Configuration and then invokes the ResolverUtil to find implementations of AutoExceptionHandler. |
Uses of Configuration in net.sourceforge.stripes.format |
---|
Methods in net.sourceforge.stripes.format that return Configuration | |
---|---|
protected Configuration |
DefaultFormatterFactory.getConfiguration()
Allows subclasses to access the stored configuration if needed. |
Methods in net.sourceforge.stripes.format with parameters of type Configuration | |
---|---|
void |
DefaultFormatterFactory.init(Configuration configuration)
Stores a reference to the configuration and configures the default formatters. |
Uses of Configuration in net.sourceforge.stripes.integration.spring |
---|
Methods in net.sourceforge.stripes.integration.spring with parameters of type Configuration | |
---|---|
void |
SpringInterceptorSupport.init(Configuration configuration)
Fetches the ServletContext and invokes SpringHelper.injectBeans() to auto-wire any Spring dependencies prior to being placed into service. |
Uses of Configuration in net.sourceforge.stripes.localization |
---|
Fields in net.sourceforge.stripes.localization declared as Configuration | |
---|---|
protected Configuration |
DefaultLocalePicker.configuration
Stores a reference to the configuration passed in at initialization. |
Methods in net.sourceforge.stripes.localization that return Configuration | |
---|---|
protected Configuration |
DefaultLocalizationBundleFactory.getConfiguration()
|
Methods in net.sourceforge.stripes.localization with parameters of type Configuration | |
---|---|
void |
DefaultLocalePicker.init(Configuration configuration)
Attempts to read the |
void |
DefaultLocalizationBundleFactory.init(Configuration configuration)
Uses the BootstrapPropertyResolver attached to the Configuration in order to look for configured bundle names in the servlet init parameters etc. |
protected void |
DefaultLocalizationBundleFactory.setConfiguration(Configuration configuration)
|
Uses of Configuration in net.sourceforge.stripes.tag |
---|
Methods in net.sourceforge.stripes.tag that return Configuration | |
---|---|
protected Configuration |
DefaultPopulationStrategy.getConfiguration()
Accessor for the configuration supplied when the population strategy is initialized. |
protected Configuration |
DefaultTagErrorRendererFactory.getConfiguration()
|
Methods in net.sourceforge.stripes.tag with parameters of type Configuration | |
---|---|
void |
DefaultPopulationStrategy.init(Configuration configuration)
Called by the Configuration to configure the component. |
void |
DefaultTagErrorRendererFactory.init(Configuration configuration)
Looks up the name of the configured renderer class in the configuration and attempts to find the Class object for it. |
protected void |
DefaultTagErrorRendererFactory.setConfiguration(Configuration configuration)
|
Uses of Configuration in net.sourceforge.stripes.validation |
---|
Methods in net.sourceforge.stripes.validation that return Configuration | |
---|---|
protected Configuration |
DefaultTypeConverterFactory.getConfiguration()
Provides subclasses with access to the configuration provided at initialization. |
Configuration |
DefaultValidationMetadataProvider.getConfiguration()
Get the Configuration object that was passed into DefaultValidationMetadataProvider.init(Configuration) . |
Methods in net.sourceforge.stripes.validation with parameters of type Configuration | |
---|---|
void |
DefaultTypeConverterFactory.init(Configuration configuration)
Places all the known convertible types and type converters into an instance level Map. |
void |
DefaultValidationMetadataProvider.init(Configuration configuration)
Currently does nothing except store a reference to configuration . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |