Package | Description |
---|---|
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.
|
Modifier and Type | Class and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
ConfigurableComponent.init(Configuration configuration)
Invoked directly after instantiation to allow the configured component to perform
one time initialization.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
void |
DefaultMultipartWrapperFactory.init(Configuration config)
Invoked directly after instantiation to allow the configured component to perform one time
initialization.
|
Modifier and Type | Method and Description |
---|---|
protected Configuration |
DefaultExceptionHandler.getConfiguration()
Provides subclasses with access to the configuration.
|
Modifier and Type | Method and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
protected Configuration |
DefaultFormatterFactory.getConfiguration()
Allows subclasses to access the stored configuration if needed.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultFormatterFactory.init(Configuration configuration)
Stores a reference to the configuration and configures the default formatters.
|
Modifier and Type | Method and Description |
---|---|
void |
SpringInterceptorSupport.init(Configuration configuration)
Fetches the ServletContext and invokes SpringHelper.injectBeans() to auto-wire any
Spring dependencies prior to being placed into service.
|
Modifier and Type | Field and Description |
---|---|
protected Configuration |
DefaultLocalePicker.configuration
Stores a reference to the configuration passed in at initialization.
|
Modifier and Type | Method and Description |
---|---|
protected Configuration |
DefaultLocalizationBundleFactory.getConfiguration() |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
protected Configuration |
DefaultPopulationStrategy.getConfiguration()
Accessor for the configuration supplied when the population strategy is initialized.
|
protected Configuration |
DefaultTagErrorRendererFactory.getConfiguration() |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
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) . |
Modifier and Type | Method and Description |
---|---|
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 . |
? Copyright 2005-2006, Stripes Development Team.