| Library: | Stripes |
| Version: | 1.3.2 |
| Compatibility: | JDK 1.5 |
| Name | Package | Description |
|---|---|---|
| ActionBeanContext | net.sourceforge.stripes.action | Encapsulates information about the current request. |
| ActionBeanInfo | net.sourceforge.stripes.tools | Encapsulates meta-information about an ActionBean, namely it's UrlBinding and set of events to which it responds. |
| ActionClassCache | net.sourceforge.stripes.controller | Quick and dirty class which caches the Class objects representing ActionBeans since it is expensive to look these up using the ResolverUtil. |
| AnnotatedClassActionResolver | net.sourceforge.stripes.controller | Uses Annotations on classes to identify the ActionBean that corresponds to the current request. |
| BeforeAfterMethodInterceptor | net.sourceforge.stripes.controller | Interceptor that inspects ActionBeans for Before and After annotations and runs the annotated methods at the requested point in the request lifecycle. |
| BeforeAfterMethodInterceptor.FilterMethods | net.sourceforge.stripes.controller | Helper class used to collect Before and After methods for a class and provide easy and rapid access to them by LifecycleStage. |
| BigDecimalTypeConverter | net.sourceforge.stripes.validation | Type converter for converting localized strings into BigDecimal numbers without any loss of magnitude or precision. |
| BigIntegerTypeConverter | net.sourceforge.stripes.validation | Type converter for converting localized strings into BigInteger numbers without any loss of magnitude or precision. |
| BooleanTypeConverter | net.sourceforge.stripes.validation | Performs a fairly aggressive conversion of a String to a boolean. |
| BootstrapPropertyResolver | net.sourceforge.stripes.config | Resolves configuration properties that are used to bootstrap the system. |
| ByteTypeConverter | net.sourceforge.stripes.validation | Basic type converter for converting strings to bytes. |
| CryptoUtil | net.sourceforge.stripes.util | Cryptographic utility that can encrypt and decrypt Strings using a key stored in HttpSession. |
| DateFormatter | net.sourceforge.stripes.format | Implements a basic formatter for Date objects. |
| DateTypeConverter | net.sourceforge.stripes.validation | A TypeConverter that aggressively attempts to convert a String to a java.util.Date object. |
| DefaultActionBeanContextFactory | net.sourceforge.stripes.controller | Implements an ActionBeanContextFactory that allows for instantiation of application specific ActionBeanContext classes. |
| DefaultConfiguration | net.sourceforge.stripes.config | Centralized location for defaults for all Configuration properties. |
| DefaultExceptionHandler | net.sourceforge.stripes.exception | Default ExceptionHandler implementation that simply rethrows any ServletExceptions and wraps and rethrows other exceptions, letting the container deal with them. |
| DefaultFormatterFactory | net.sourceforge.stripes.format | Very simple default implementation of a formatter factory that is aware of how to format dates and numbers. |
| DefaultLocalePicker | net.sourceforge.stripes.localization | Default locale picker that uses a comma separated list of locales in the servlet init parameters to determine the set of locales that are supported by the application. |
| DefaultLocalizationBundleFactory | net.sourceforge.stripes.localization | Very simple default implementation of a bundle factory. |
| DefaultPopulationStrategy | net.sourceforge.stripes.tag | Default implementation of the form input tag population strategy. |
| DefaultTagErrorRenderer | net.sourceforge.stripes.tag | This default implementation of the TagErrorRenderer interface sets the html class attribute to 'error'. |
| DefaultTagErrorRendererFactory | net.sourceforge.stripes.tag | A straightforward implementation of the TagErrorRendererFactory interface that looks up the name of the renderer class in config, and if one is not supplied defaults to using the DefaultTagErrorRenderer . |
| DefaultTypeConverterFactory | net.sourceforge.stripes.validation | Default TypeConverterFactory implementation that simply creates an instance level map of all the TypeConverters included in the Stripes distribution, and their applicable classes. |
| DelegatingExceptionHandler | net.sourceforge.stripes.exception | An alternative implementation of ExceptionHandler that discovers and automatically configures individual AutoExceptionHandler classes to handle specific types of exceptions. |
| DispatcherServlet | net.sourceforge.stripes.controller | Servlet that controls how requests to the Stripes framework are processed. |
| DoubleTypeConverter | net.sourceforge.stripes.validation | Basic TypeConverter that will convert from Strings to Numbers of type Double. |
| ElFunctions | net.sourceforge.stripes.tag | A collection of static functions that are included in the Stripes tag library. |
| EmailTypeConverter | net.sourceforge.stripes.validation | A faux TypeConverter that validates that the String supplied is a valid email address. |
| EnumeratedTypeConverter | net.sourceforge.stripes.validation | Converts the String form of an Enumerated type into the Enum value that it represents. |
| ErrorsFooterTag | net.sourceforge.stripes.tag | Can be used within a stripes:errors tag to show a footer on an error list. |
| ErrorsHeaderTag | net.sourceforge.stripes.tag | Can be used within a stripes:errors tag to show a header on an error list. |
| ErrorsTag | net.sourceforge.stripes.tag | The errors tag has two modes, one where it displays all validation errors in a list and a second mode when there is a single enclosed field-error tag that has no name attribute in which case this tag iterates over the body, displaying each error in turn in place of the field-error tag. |
| ErrorsTagExtraInfo | net.sourceforge.stripes.tag | This tag extra info exposes index and error context variables for the body of the errors tag. |
| EventInfo | net.sourceforge.stripes.tools | Encapsulates meta-information about a single event within an ActionBean. |
| ExecutionContext | net.sourceforge.stripes.controller | Holds the execution context for processing a single request. |
| FileBean | net.sourceforge.stripes.action | Represents a file that was submitted as part of an HTTP POST request. |
| FlashScope | net.sourceforge.stripes.controller | A FlashScope is an object that can be used to store objects and make them available as request parameters during this request cycle and the next one. |
| FloatTypeConverter | net.sourceforge.stripes.validation | Basic TypeConverter that converts Strings to Numbers of type Float. |
| FormTag | net.sourceforge.stripes.tag | Form tag for use with the Stripes framework. |
| ForwardResolution | net.sourceforge.stripes.action | Resolution that uses the Servlet API to forward the user to another path within the same web application using a server side forward. |
| HtmlTagSupport | net.sourceforge.stripes.tag | Provides basic facilities for any tag that wishes to mimic a standard HTML/XHTML tag. |
| HtmlTagSupportBeanInfo | net.sourceforge.stripes.tag | Descirbes the properties supported by the HtmlTagSupport class which is the parent of all the HTML Form/Input tags in Stripes. |
| HtmlUtil | net.sourceforge.stripes.util | Provides simple utility methods for dealing with HTML. |
| IndividualErrorTag | net.sourceforge.stripes.tag | The individual-error tag works in concert with a parent errors tag to control the output of each iteration of an error. |
| InputButtonSupportTag | net.sourceforge.stripes.tag | Support tag class that can generate HTML form fields with localized value attributes. |
| InputButtonTag | net.sourceforge.stripes.tag | Tag that generates HTML form fields of type {@literal |
| InputCheckBoxTag | net.sourceforge.stripes.tag | Implements an HTML tag that generates form fields of type . |
| InputFileTag | net.sourceforge.stripes.tag | Tag that generates HTML form fields of type {@literal |
| InputHiddenTag | net.sourceforge.stripes.tag | Generates one or more {@literal |
| InputImageTag | net.sourceforge.stripes.tag | Tag class that generates an image button for use in HTML forms, e.g: |
| InputLabelTag | net.sourceforge.stripes.tag | Tag handler for a tag that produces an HTML label tag which is capable of looking up localized field names and formatting the label when validation errors exist. |
| InputOptionsCollectionTag | net.sourceforge.stripes.tag | Writes a set of tags to the page based on the contents of a Collection. |
| InputOptionsEnumerationTag | net.sourceforge.stripes.tag | Writes a set of tags to the page based on the values of a enum. |
| InputOptionTag | net.sourceforge.stripes.tag | Generates an HTML tag. |
| InputPasswordTag | net.sourceforge.stripes.tag | Tag class that implements an input tag of type password. |
| InputRadioButtonTag | net.sourceforge.stripes.tag | Generates HTML tags based on the attribute set on the tag and the state of the form. |
| InputResetTag | net.sourceforge.stripes.tag | Tag that generates HTML form fields of type {@literal |
| InputSelectTag | net.sourceforge.stripes.tag | Coordinates with one or more other tags to produce a well formed HTML select tag with state repopulation. |
| InputSubmitTag | net.sourceforge.stripes.tag | Tag that generates HTML form fields of type {@literal |
| InputTagSupport | net.sourceforge.stripes.tag | Parent class for all input tags in stripes. |
| InputTextAreaTag | net.sourceforge.stripes.tag | Tag that generates HTML form fields of type {@literal |
| InputTextTag | net.sourceforge.stripes.tag | Tag that generates HTML form fields of type , which can dynamically re-populate their value. |
| IntegerTypeConverter | net.sourceforge.stripes.validation | Basic type converter for converting strings to integers. |
| JavaScriptBuilder | net.sourceforge.stripes.ajax | Builds a set of JavaScript statements that will re-construct the value of a Java object, including all Number, String, Enum, Boolean, Collection, Map and Array properties. |
| JavaScriptResolution | net.sourceforge.stripes.ajax | Resolution that will convert a Java object web to a web of JavaScript objects and arrays, and stream the JavaScript back to the client. |
| LayoutComponentTag | net.sourceforge.stripes.tag.layout | Defines a component in a layout. |
| LayoutContext | net.sourceforge.stripes.tag.layout | Used to move contextual information about a layout rendering between a LayoutRenderTag and a LayoutDefinitionTag. |
| LayoutDefinitionTag | net.sourceforge.stripes.tag.layout | On the surface, allows a developer to define a layout using a custom tag - but is actually the tag responsible for generating the output of the layout. |
| LayoutRenderTag | net.sourceforge.stripes.tag.layout | Renders a named layout, optionally overriding one or more components in the layout. |
| LinkParamTag | net.sourceforge.stripes.tag | Used to supply parameters when nested inside a link tag. |
| LinkTag | net.sourceforge.stripes.tag | Tag for generating links to pages or ActionBeans within a Stripes application. |
| Literal | net.sourceforge.stripes.util | Utility class that makes it easy to construct Collection literals, and also provides a nicer syntax for creating array literals. |
| LocalizableError | net.sourceforge.stripes.validation | Provides a mechanism for creating localizable error messages for presentation to the user. |
| LocalizableMessage | net.sourceforge.stripes.action | A non-error message class that can localize (or at least externalize) the message String in a resource bundle. |
| LocalizationUtility | net.sourceforge.stripes.localization | Provides simple localization utility methods that are used in multiple places in the Stripes code base. |
| Log | net.sourceforge.stripes.util | A wafer thin wrapper around Commons logging that uses var-args to make it much more efficient to call the logging methods in commons logging without having to surround every call site with calls to Log.isXXXEnabled(). |
| LongTypeConverter | net.sourceforge.stripes.validation | Basic type converter for converting strings to integers. |
| Main | net.sourceforge.stripes | Simple executable class that is used as the Main-Class in the Stripes jar. |
| MessagesTag | net.sourceforge.stripes.tag | Displays a list of non-error messages to the user. |
| MockBaseConfig | net.sourceforge.stripes.mock | Common parent class for both MockServletConfig and MockFilterConfig since they are both essentially the same with a couple of method names changed. |
| MockFilterChain | net.sourceforge.stripes.mock | Mock implementation of a filter chain that allows a number of filters to be called before finally invoking the servlet that is the target of the request. |
| MockFilterConfig | net.sourceforge.stripes.mock | Mock implementation of the FilterConfig interface from the Http Servlet spec. |
| MockHttpServletRequest | net.sourceforge.stripes.mock | Mock implementation of an HttpServletRequest object. |
| MockHttpServletResponse | net.sourceforge.stripes.mock | Mock implementation of an HttpServletResponse. |
| MockHttpSession | net.sourceforge.stripes.mock | Simple mock implementation of HttpSession that implements most basic operations. |
| MockRequestDispatcher | net.sourceforge.stripes.mock | Mock implementation of a RequesetDispatcher used for testing purposes. |
| MockRoundtrip | net.sourceforge.stripes.mock | Mock object that attempts to make it easier to use the other Mock objects in this package to interact with Stripes and to interrogate the results. |
| MockServletConfig | net.sourceforge.stripes.mock | Mock implementation of a Servlet Config. |
| MockServletContext | net.sourceforge.stripes.mock | Mock implementation of a ServletContext. |
| MockServletOutputStream | net.sourceforge.stripes.mock | Mock implementation of a ServletOutputStream that just uses a byte array output stream to capture any output and make it available after the test is done. |
| NameBasedActionResolver | net.sourceforge.stripes.controller | An ActionResolver that uses the names of classes and methods to generate sensible default URL bindings and event names respectively. |
| NumberFormatter | net.sourceforge.stripes.format | Formats numbers into localized Strings for display. |
| NumberTypeConverterSupport | net.sourceforge.stripes.validation | Provides the basic support for converting Strings to non-floating point numbers (i.e. |
| OgnlActionBeanPropertyBinder | net.sourceforge.stripes.controller | Implementation of the ActionBeanPropertyBinder interface that uses the OGNL toolkit to perform the JavaBean property binding. |
| OgnlCustomNullHandler | net.sourceforge.stripes.util | NullHandler implementation used to replace the default one that ships with Ognl. |
| OgnlSafeListPropertyAccessor | net.sourceforge.stripes.util | Used to override the default ListPropertyAccessor in Ognl to return nulls instead of throw IndexOutOfBoundExceptions, when an attmept is made to access a List property that is not within the bounds of the list. |
| OgnlUtil | net.sourceforge.stripes.util | Utility class used to configure and use Ognl in a consistent manner across the pieces of Stripes that use it. |
| OneToManyTypeConverter | net.sourceforge.stripes.validation | A specialized type converter for converting a single input field/parameter value into one or more Java objects contained in a List. |
| OnwardResolution | net.sourceforge.stripes.action | Abstract class that provides a consistent API for all Resolutions that send the user onward to another view - either by forwarding, redirecting or some other mechanism. |
| ParameterName | net.sourceforge.stripes.controller | Encapsulates the name of a parameter in the HttpServletRequest. |
| PercentageTypeConverter | net.sourceforge.stripes.validation | A locale aware number converter that parses percentages. |
| RedirectResolution | net.sourceforge.stripes.action | Resolution that uses the Servlet API to redirect the user to another path by issuing a client side redirect. |
| ReflectUtil | net.sourceforge.stripes.util | Common utilty methods that are useful when working with reflection. |
| ResolverUtil | net.sourceforge.stripes.util | ResolverUtil is used to locate classes that implement an interface or extend a given base class. |
| RuntimeConfiguration | net.sourceforge.stripes.config | 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. |
| ScopedLocalizableError | net.sourceforge.stripes.validation | Provides a slightly more customizable approach to error messages. |
| ShortTypeConverter | net.sourceforge.stripes.validation | Basic type converter for converting strings to short integers. |
| SimpleError | net.sourceforge.stripes.validation | Validation error message that allows for supplying the error message at the time of creation - i.e. |
| SimpleMessage | net.sourceforge.stripes.action | A simple non-error message that uses the String supplied to it as the message (i.e. |
| SiteStructureTool | net.sourceforge.stripes.tools | A tool for extracting and documenting information related to the site structure of a Stripes application. |
| SpringAwareActionResolver | net.sourceforge.stripes.integration.spring | An extension of NameBasedActionResolver that uses a Spring context to inject Spring beans into newly created ActionBeans before handing them back for processing. |
| SpringHelper | net.sourceforge.stripes.integration.spring | Static helper class that is used to lookup Spring beans and inject them into objects (usually ActionBeans). |
| SpringInterceptor | net.sourceforge.stripes.integration.spring | An Interceptor that uses a Spring context to inject Spring beans into newly created ActionBeans immediatley following ActionBeanResolution. |
| StreamingResolution | net.sourceforge.stripes.action | Resolution for streaming data back to the client (in place of forwarding the user to another page). |
| StripesFilter | net.sourceforge.stripes.controller | The Stripes filter is used to ensure that all requests coming to a Stripes application are handled in the same way. |
| StripesRequestWrapper | net.sourceforge.stripes.controller | HttpServletRequestWrapper that is used to make the file upload functionality transparent. |
| StripesTagSupport | net.sourceforge.stripes.tag | A very basic implementation of the Tag interface that is similar in manner to the standard TagSupport class, but with less clutter. |
| UrlBuilder | net.sourceforge.stripes.util | Simple class that encapsulates the process of building up a URL from a path fragment and a zero or more parameters. |
| UseActionBeanTag | net.sourceforge.stripes.tag | This tag supports the use of Stripes ActionBean classes as view helpers. |
| ValidationErrors | net.sourceforge.stripes.validation | Container class for ValidationErrors that are tied to form fields. |
| WizardFieldsTag | net.sourceforge.stripes.tag | Examines the request and include hidden fields for all parameters that have do not have form fields in the current form. |
| Search |




