A B C D E F G H I J K L M N O P Q R S T U V W

A

acceptRequest(MockHttpServletRequest, MockHttpServletResponse) - Method in class net.sourceforge.stripes.mock.MockServletContext
Takes a request and response and runs them through the set of filters using a MockFilterChain, which if everything goes well, will eventually execute the servlet that is registered with this context.
ACTION_BEAN_CONTEXT_FACTORY - Static variable in class net.sourceforge.stripes.config.RuntimeConfiguration
The Configuration Key for looking up the name of an ActionBeanContextFactory class.
ACTION_BEAN_PROPERTY_BINDER - Static variable in class net.sourceforge.stripes.config.RuntimeConfiguration
The Configuration Key for looking up the name of the ActionResolver class.
ACTION_RESOLVER - Static variable in class net.sourceforge.stripes.config.RuntimeConfiguration
The Configuration Key for looking up the name of the ActionResolver class.
ActionBean - Interface in net.sourceforge.stripes.action
Interface for all classes that respond to user interface events.
ActionBeanContext - Class in net.sourceforge.stripes.action
Encapsulates information about the current request.
ActionBeanContext() - Constructor for class net.sourceforge.stripes.action.ActionBeanContext
 
ActionBeanContextFactory - Interface in net.sourceforge.stripes.controller
Interface for classes that can instantiate and supply new instances of the ActionBeanContext class, or subclasses thereof.
ActionBeanInfo - Class in net.sourceforge.stripes.tools
Encapsulates meta-information about an ActionBean, namely it's UrlBinding and set of events to which it responds.
ActionBeanInfo() - Constructor for class net.sourceforge.stripes.tools.ActionBeanInfo
 
ActionBeanNotFoundException - Exception in net.sourceforge.stripes.exception
Thrown when the action resolver can not find an ActionBean bound to the requested URL.
ActionBeanNotFoundException(String) - Constructor for exception net.sourceforge.stripes.exception.ActionBeanNotFoundException
 
ActionBeanNotFoundException(String, Throwable) - Constructor for exception net.sourceforge.stripes.exception.ActionBeanNotFoundException
 
ActionBeanNotFoundException(Throwable) - Constructor for exception net.sourceforge.stripes.exception.ActionBeanNotFoundException
 
ActionBeanNotFoundException(String, Map<String, Class<? extends ActionBean>>) - Constructor for exception net.sourceforge.stripes.exception.ActionBeanNotFoundException
 
ActionBeanNotFoundException(String, Map<String, Class<? extends ActionBean>>, Throwable) - Constructor for exception net.sourceforge.stripes.exception.ActionBeanNotFoundException
 
ActionBeanPropertyBinder - Interface in net.sourceforge.stripes.controller
Interface for class(es) responsible for taking the String/String[] properties contained in the HttpServletRequest and: Converting them to the rich type of the property on the target JavaBean Setting the properties on the JavaBean using the appropriate mechanism
ActionResolver - Interface in net.sourceforge.stripes.controller
Resolvers are responsible for locating ActionBean instances that can handle the submitted request.
add(Class<?>, Class<? extends Formatter<?>>) - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Adds a Formatter to the set of registered Formatters, overriding an existing formatter if one was registered for the type.
add(Class<?>, Class<? extends Formatter<?>>) - Method in interface net.sourceforge.stripes.format.FormatterFactory
Adds a formatter to the set of registered formatters, overriding an existing formatter if one was already registered for the type.
add(Class<?>, Class<? extends TypeConverter<?>>) - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Adds a TypeConverter to the set of registered TypeConverters, overriding an existing converter if one was registered for the type.
add(Class<?>, Class<? extends TypeConverter<?>>) - Method in interface net.sourceforge.stripes.validation.TypeConverterFactory
Adds a type converter to the set of registered type converters, overriding an existing converter if one was already registered for the type.
add(String, ValidationError) - Method in class net.sourceforge.stripes.validation.ValidationErrors
Synonym for put(String field, ValidationError error).
addActionBean(Class<? extends ActionBean>) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Adds an ActionBean class to the set that this resolver can resolve.
addAfterMethod(LifecycleStage[], Method) - Method in class net.sourceforge.stripes.controller.BeforeAfterMethodInterceptor.FilterMethods
Adds a method to be executed after the supplied LifecycleStages.
addAll(String, List<ValidationError>) - Method in class net.sourceforge.stripes.validation.ValidationErrors
Synonym for putAll().
addAllInitParameters(Map<String, String>) - Method in class net.sourceforge.stripes.mock.MockBaseConfig
Adds all the values in the provided Map to the set of init parameters.
addAllInitParameters(Map<String, String>) - Method in class net.sourceforge.stripes.mock.MockServletContext
Adds all the values in the supplied Map to the set of init parameters.
addBeforeMethod(LifecycleStage[], Method) - Method in class net.sourceforge.stripes.controller.BeforeAfterMethodInterceptor.FilterMethods
Adds a method to be executed before the supplied LifecycleStages.
addBinding(Class<? extends ActionBean>, UrlBinding) - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Map an ActionBean to a URL.
addClassExclusion(Class<?>...) - Method in class net.sourceforge.stripes.ajax.JavaScriptBuilder
Adds one or more properties to the list of properties to exclude when translating to JavaScript.
addClassExclusion(Class<?>...) - Method in class net.sourceforge.stripes.ajax.JavaScriptResolution
Adds one or more classes to the list of types to exclude when translating to JavaScript.
addComponent(String, String) - Method in class net.sourceforge.stripes.tag.layout.LayoutRenderTag
Allows nested tags to register their contents for rendering in the layout.
addCookie(Cookie) - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Adds a cookie to the set of cookies in the response.
addDateHeader(String, long) - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Adds the specified value for the named header (does not remove/replace existing values).
addEntry(Object, Object, Object) - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Adds an entry to the internal list of items being used to generate options.
addEntry(Object, Object, Object, Object) - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Adds an entry to the internal list of items being used to generate options.
addEvent(EventInfo) - Method in class net.sourceforge.stripes.tools.ActionBeanInfo
Adds the supplied event to the events for this ActionBean.
addFilter(Filter) - Method in class net.sourceforge.stripes.mock.MockFilterChain
Adds a filter to the set of filters to be run.
addFilter(Class<? extends Filter>, String, Map<String, String>) - Method in class net.sourceforge.stripes.mock.MockServletContext
Adds a filter to the end of filter chain that will be used to filter requests.
addFilters(Collection<Filter>) - Method in class net.sourceforge.stripes.mock.MockFilterChain
Adds an ordered list of filters to the filter chain.
addGlobalError(ValidationError) - Method in class net.sourceforge.stripes.validation.ValidationErrors
Allows for the addition of errors that are not tied to a specific field.
addHandler(Class<?>) - Method in class net.sourceforge.stripes.exception.DefaultExceptionHandler
Adds a class to the set of configured delegate handlers.
addHandler(Object) - Method in class net.sourceforge.stripes.exception.DefaultExceptionHandler
Adds an object instance to the set of configured handles.
addHeader(String, Object) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Allows headers to be set on the request.
addHeader(String, String) - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Adds the specified value for the named header (does not remove/replace existing values).
addIfMatching(ResolverUtil.Test, String) - Method in class net.sourceforge.stripes.util.ResolverUtil
Add the class designated by the fully qualified class name provided to the set of resolved classes if and only if it is approved by the Test supplied.
addInitParameter(String, String) - Method in class net.sourceforge.stripes.mock.MockBaseConfig
Adds a value to the set of init parameters.
addInitParameter(String, String) - Method in class net.sourceforge.stripes.mock.MockServletContext
Adds an init parameter to the mock servlet context.
addInterceptor(Map<LifecycleStage, Collection<Interceptor>>, Interceptor) - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Adds the interceptor to the map, associating it with the LifecycleStages indicated by the Intercepts annotation.
addIntHeader(String, int) - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Adds the specified value for the named header (does not remove/replace existing values).
addLocale(Locale) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Adds a Locale to the set of requested locales.
addParameter(String, Object...) - Method in class net.sourceforge.stripes.action.OnwardResolution
Adds a request parameter with zero or more values to the URL.
addParameter(String, String...) - Method in class net.sourceforge.stripes.mock.MockRoundtrip
Adds the value provided to the set of values for the named request parameter.
addParameter(String, Object) - Method in class net.sourceforge.stripes.tag.FormTag
Appends a parameter to the "action" attribute of the form tag.
addParameter(String, Object) - Method in class net.sourceforge.stripes.tag.LinkTagSupport
Used by stripes:param tags (and possibly other tags at some distant point in the future) to add a parameter to the parent link tag.
addParameter(String, Object) - Method in interface net.sourceforge.stripes.tag.ParameterizableTag
Adds a parameter to the tag.
addParameter(String, Object...) - Method in class net.sourceforge.stripes.util.UrlBuilder
Appends one or more values of a parameter to the URL.
addParameters(Map<String, ? extends Object>) - Method in class net.sourceforge.stripes.action.OnwardResolution
Bulk adds one or more request parameters to the URL.
addParameters(Map<? extends Object, ? extends Object>) - Method in class net.sourceforge.stripes.util.UrlBuilder
Appends one or more parameters to the URL.
addPropertyExclusion(String...) - Method in class net.sourceforge.stripes.ajax.JavaScriptBuilder
Adds one or more properties to the list of property to exclude when translating to JavaScript.
addPropertyExclusion(String...) - Method in class net.sourceforge.stripes.ajax.JavaScriptResolution
Adds one or more properties to the list of types to exclude when translating to JavaScript.
addResolution(String) - Method in class net.sourceforge.stripes.tools.EventInfo
Adds a resolution to the set of possible resolutions for the event.
After - Annotation Type in net.sourceforge.stripes.action
Specifies that the annotated method should be run after the specified LifecycleStage(s).
age() - Method in class net.sourceforge.stripes.controller.FlashScope
Returns the time in seconds since the request that generated this flash scope completed.
ALGORITHM - Static variable in class net.sourceforge.stripes.util.CryptoUtil
The algorithm that is used to encrypt values.
AnnotatedClassActionResolver - Class in net.sourceforge.stripes.controller
Uses Annotations on classes to identify the ActionBean that corresponds to the current request.
AnnotatedClassActionResolver() - Constructor for class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
 
applies(ValidationMethod, String) - Static method in class net.sourceforge.stripes.controller.DispatcherHelper
Determines if the ValidationMethod annotation should be applied to the named event.
applies(String[], String) - Static method in class net.sourceforge.stripes.util.CollectionUtil
Checks to see if an event is applicable given an array of event names.
applyHeaders(HttpServletResponse) - Method in class net.sourceforge.stripes.action.StreamingResolution
Sets the response headers, based on what is known about the file or stream being handled.
array(T...) - Static method in class net.sourceforge.stripes.util.Literal
Returns an array containing all the elements supplied.
array(boolean...) - Static method in class net.sourceforge.stripes.util.Literal
Returns an array containing all the elements supplied.
array(byte...) - Static method in class net.sourceforge.stripes.util.Literal
Returns an array containing all the elements supplied.
array(char...) - Static method in class net.sourceforge.stripes.util.Literal
Returns an array containing all the elements supplied.
array(short...) - Static method in class net.sourceforge.stripes.util.Literal
Returns an array containing all the elements supplied.
array(int...) - Static method in class net.sourceforge.stripes.util.Literal
Returns an array containing all the elements supplied.
array(long...) - Static method in class net.sourceforge.stripes.util.Literal
Returns an array containing all the elements supplied.
array(float...) - Static method in class net.sourceforge.stripes.util.Literal
Returns an array containing all the elements supplied.
array(double...) - Static method in class net.sourceforge.stripes.util.Literal
Returns an array containing all the elements supplied.
ArrayPropertyAccessor - Class in net.sourceforge.stripes.util.bean
Implementation of the PropertyAccessor interface for interacting with arrays.
ArrayPropertyAccessor() - Constructor for class net.sourceforge.stripes.util.bean.ArrayPropertyAccessor
 
asList(Object) - Static method in class net.sourceforge.stripes.util.CollectionUtil
Converts an Object reference that is known to be an array into a List.
asList(Iterable<T>) - Static method in class net.sourceforge.stripes.util.CollectionUtil
Converts an Iterable into a List that can be navigated in ways other than simple iteration.
asObjectArray(Object) - Static method in class net.sourceforge.stripes.util.CollectionUtil
Converts an Object reference that is known to be an array into an Object[].
assertGetContextWorks(ActionBean) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Since many down stream parts of Stripes rely on the ActionBean properly returning the context it is given, we'll just test it up front.
AutoExceptionHandler - Interface in net.sourceforge.stripes.exception
A marker interface for delegate exception handlers to be used with the DelegatingExceptionHandler.
autoInclude(boolean) - Method in class net.sourceforge.stripes.action.ForwardResolution
If true then the ForwardResolution will automatically detect when it is executing as part of a server-side Include and include the supplied URL instead of forwarding to it.

B

Base64 - Class in net.sourceforge.stripes.util
Encodes and decodes to and from Base64 notation.
Base64.InputStream - Class in net.sourceforge.stripes.util
A Base64.InputStream will read data from another java.io.InputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
Base64.InputStream(InputStream) - Constructor for class net.sourceforge.stripes.util.Base64.InputStream
Constructs a Base64.InputStream in DECODE mode.
Base64.InputStream(InputStream, int) - Constructor for class net.sourceforge.stripes.util.Base64.InputStream
Constructs a Base64.InputStream in either ENCODE or DECODE mode.
Base64.OutputStream - Class in net.sourceforge.stripes.util
A Base64.OutputStream will write data to another java.io.OutputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
Base64.OutputStream(OutputStream) - Constructor for class net.sourceforge.stripes.util.Base64.OutputStream
Constructs a Base64.OutputStream in ENCODE mode.
Base64.OutputStream(OutputStream, int) - Constructor for class net.sourceforge.stripes.util.Base64.OutputStream
Constructs a Base64.OutputStream in either ENCODE or DECODE mode.
BASE_PACKAGES - Static variable in class net.sourceforge.stripes.controller.NameBasedActionResolver
Default set of packages (web, www, stripes, action) to be removed from the front of class names when translating them to URL bindings.
bean - Variable in class net.sourceforge.stripes.tag.InputOptionsCollectionTag.Entry
 
beanClass - Variable in class net.sourceforge.stripes.controller.UrlBindingParameter
 
BeanComparator - Class in net.sourceforge.stripes.util.bean
A comparator which compares objects based on one or more bean properties.
BeanComparator(String...) - Constructor for class net.sourceforge.stripes.util.bean.BeanComparator
Constructs a BeanComparator for comparing beans based on the supplied set of properties, using the default system Locale to collate Strings.
BeanComparator(Locale, String...) - Constructor for class net.sourceforge.stripes.util.bean.BeanComparator
Constructs a BeanComparator for comparing beans based on the supplied set of properties, using the supplied Locale to collate Strings.
BeanFirstPopulationStrategy - Class in net.sourceforge.stripes.tag
An alternative tag population strategy that will normally prefer the value from the ActionBean over values from the request - even when the ActionBean returns null! Only if the ActionBean is not present, or does not define an attribute with the name supplied to the tag will other population sources be examined.
BeanFirstPopulationStrategy() - Constructor for class net.sourceforge.stripes.tag.BeanFirstPopulationStrategy
 
beanType - Variable in class net.sourceforge.stripes.controller.UrlBinding
 
BeanUtil - Class in net.sourceforge.stripes.util.bean
Provides a simple way to manipulate properties and nested properties specified by complex property expressions.
BeanUtil() - Constructor for class net.sourceforge.stripes.util.bean.BeanUtil
 
Before - Annotation Type in net.sourceforge.stripes.action
Specifies that the annotated method should be run before the specified LifecycleStage(s).
BeforeAfterMethodInterceptor - Class in 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() - Constructor for class net.sourceforge.stripes.controller.BeforeAfterMethodInterceptor
 
BeforeAfterMethodInterceptor.FilterMethods - Class in 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.
BeforeAfterMethodInterceptor.FilterMethods() - Constructor for class net.sourceforge.stripes.controller.BeforeAfterMethodInterceptor.FilterMethods
 
beginRequest(HttpServletRequest) - Method in class net.sourceforge.stripes.controller.FlashScope
Called by StripesFilter to copy all the attributes from this flash scope to the given request.
BigDecimalTypeConverter - Class in net.sourceforge.stripes.validation
Type converter for converting localized strings into BigDecimal numbers without any loss of magnitude or precision.
BigDecimalTypeConverter() - Constructor for class net.sourceforge.stripes.validation.BigDecimalTypeConverter
 
BigIntegerTypeConverter - Class in net.sourceforge.stripes.validation
Type converter for converting localized strings into BigInteger numbers without any loss of magnitude or precision.
BigIntegerTypeConverter() - Constructor for class net.sourceforge.stripes.validation.BigIntegerTypeConverter
 
bind(ActionBean, ActionBeanContext, boolean) - Method in interface net.sourceforge.stripes.controller.ActionBeanPropertyBinder
Populates all the properties in the request which have a matching property in the target bean.
bind(ActionBean, String, Object) - Method in interface net.sourceforge.stripes.controller.ActionBeanPropertyBinder
Bind an individual property with the name specified to the bean supplied.
bind(ActionBean, ActionBeanContext, boolean) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Loops through the parameters contained in the request and attempts to bind each one to the supplied ActionBean.
bind(ActionBean, String, Object) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Attempt to set the named property on the target bean.
BindingPolicyManager - Class in net.sourceforge.stripes.controller
Manages the policies observed by DefaultActionBeanPropertyBinder when binding properties to an ActionBean.
BindingPolicyManager(Class<?>) - Constructor for class net.sourceforge.stripes.controller.BindingPolicyManager
Create a new instance to handle binding security for the given type.
bindMissingValuesAsNull(ActionBean, ActionBeanContext) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Uses a hidden field to determine what (if any) fields were present in the form but did not get submitted to the server.
bindNonNullValue(ActionBean, PropertyExpressionEvaluation, List<Object>, Class, Class) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Internal helper method to bind one or more values to a single property on an ActionBean.
bindNullValue(ActionBean, String, Class<?>) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Internal helper method that determines what to do when no value was supplied for a given form field (but the field was present on the page).
BooleanTypeConverter - Class in net.sourceforge.stripes.validation
Performs a fairly aggressive conversion of a String to a boolean.
BooleanTypeConverter() - Constructor for class net.sourceforge.stripes.validation.BooleanTypeConverter
 
BootstrapPropertyResolver - Class in net.sourceforge.stripes.config
Resolves configuration properties that are used to bootstrap the system.
BootstrapPropertyResolver(FilterConfig) - Constructor for class net.sourceforge.stripes.config.BootstrapPropertyResolver
Constructs a new BootstrapPropertyResolver with the given ServletConfig.
build() - Method in class net.sourceforge.stripes.ajax.JavaScriptBuilder
Causes the JavaScriptBuilder to navigate the properties of the supplied object and convert them to JavaScript.
build(Writer) - Method in class net.sourceforge.stripes.ajax.JavaScriptBuilder
Causes the JavaScriptBuilder to navigate the properties of the supplied object and convert them to JavaScript, writing them to the supplied writer as it goes.
build(HttpServletRequest, File, long) - Method in class net.sourceforge.stripes.controller.multipart.CommonsMultipartWrapper
Pseudo-constructor that allows the class to perform any initialization necessary.
build(HttpServletRequest, File, long) - Method in interface net.sourceforge.stripes.controller.multipart.MultipartWrapper
Pseudo-constructor that allows the class to perform any initialization necessary.
build() - Method in class net.sourceforge.stripes.util.UrlBuilder
Build and return the URL
buildAction() - Method in class net.sourceforge.stripes.tag.FormTag
Builds the action attribute, including the context path and any parameters.
buildUrl() - Method in class net.sourceforge.stripes.tag.LinkTagSupport
Builds the URL based on the information currently stored in the tag.
BUNDLE_NAME - Static variable in class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
The name of the default resource bundle for Stripes.
BUNDLED_IMPLEMENTATIONS - Static variable in class net.sourceforge.stripes.controller.multipart.DefaultMultipartWrapperFactory
The names of the MultipartWrapper classes that will be tried if no other is specified.
ByteTypeConverter - Class in net.sourceforge.stripes.validation
Basic type converter for converting strings to bytes.
ByteTypeConverter() - Constructor for class net.sourceforge.stripes.validation.ByteTypeConverter
 

C

cacheFormatterClass(Class<?>, Class<? extends Formatter<?>>) - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Add formatter class formatterClass for formatting objects of type clazz.
cachePath(String, UrlBinding) - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Map a path directly to a binding.
cachePrefix(String, UrlBinding) - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Add a binding to the set of bindings associated with a prefix.
cacheTypeConverterClass(Class<?>, Class<? extends TypeConverter<?>>) - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Add converter class converterClass for converting objects of type clazz.
CharacterTypeConverter - Class in net.sourceforge.stripes.validation
Simple type converter that converts the input String to a Character by returning the first character in the String.
CharacterTypeConverter() - Constructor for class net.sourceforge.stripes.validation.CharacterTypeConverter
 
checkAndAppendYear(String) - Method in class net.sourceforge.stripes.validation.DateTypeConverter
Checks to see how many 'parts' there are to the date (separated by spaces) and if there are only two parts it adds the current year to the end by geting the Locale specific year string from a Calendar instance.
checkHashCode(byte[]) - Static method in class net.sourceforge.stripes.util.CryptoUtil
Checks the hash code in the first bytes of the value to make sure it is correct.
checkSingleRequiredField(String, String, String[], StripesRequestWrapper, ValidationErrors) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Checks to see if a single field's set of values are 'present', where that is defined as having one or more values, and where each value is a non-empty String after it has had white space trimmed from each end.
cleanup() - Static method in class net.sourceforge.stripes.util.Log
Forces Log to cleanup any cached resources.
clearCache() - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Clear the class and instance caches.
clearCache() - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Clear the instance cache.
clearError() - Method in class net.sourceforge.stripes.controller.DynamicMappingFilter.ErrorTrappingResponseWrapper
Clear error code and error message.
clearParameters() - Method in class net.sourceforge.stripes.tag.LinkTagSupport
Clears all existing parameters.
close() - Method in class net.sourceforge.stripes.controller.DynamicMappingFilter.TempBufferWriter
 
close() - Method in class net.sourceforge.stripes.util.Base64.OutputStream
Flushes and closes (I think, in the superclass) the stream.
CollectionUtil - Class in net.sourceforge.stripes.util
Utility methods for working with Collections and Arrays.
CollectionUtil() - Constructor for class net.sourceforge.stripes.util.CollectionUtil
 
combineParts(Object...) - Static method in class net.sourceforge.stripes.util.StringUtil
Combines a bunch of objects into a single String.
combineValues(Collection<String>) - Static method in class net.sourceforge.stripes.util.HtmlUtil
One of a pair of methods (the other is splitValues) that is used to combine several un-encoded values into a single delimited, encoded value for placement into a hidden field.
COMMONS_CLASS - Static variable in class net.sourceforge.stripes.validation.expression.CommonsElExpressionExecutor
The FQN of the expression evaluator class in commons-el.
CommonsElExpressionExecutor - Class in net.sourceforge.stripes.validation.expression
An implementation of ExpressionExecutor that relies on the Apache Commons EL implementation being available in the classpath.
CommonsElExpressionExecutor() - Constructor for class net.sourceforge.stripes.validation.expression.CommonsElExpressionExecutor
Default constructor that checks to make sure this class can work, and if not throws an exception.
CommonsMultipartWrapper - Class in net.sourceforge.stripes.controller.multipart
An implementation of MultipartWrapper that uses Jakarta Commons FileUpload (from apache) to parse the request parts.
CommonsMultipartWrapper() - Constructor for class net.sourceforge.stripes.controller.multipart.CommonsMultipartWrapper
 
compare(Object, Object) - Method in class net.sourceforge.stripes.util.bean.BeanComparator
Compares two JavaBeans for order.
compareTo(ParameterName) - Method in class net.sourceforge.stripes.controller.ParameterName
Orders ParameterNames so that those with shorter (unstripped) names come first.
completeRequest() - Method in class net.sourceforge.stripes.controller.FlashScope
Used by the StripesFilter to notify the flash scope that the request for which it is used has been completed.
components - Variable in class net.sourceforge.stripes.controller.UrlBinding
 
CONFIG_CLASS - Static variable in class net.sourceforge.stripes.controller.StripesFilter
Key used to lookup the name of the Configuration class used to configure Stripes.
CONFIG_ENCRYPTION_KEY - Static variable in class net.sourceforge.stripes.util.CryptoUtil
Key used to look up the location of a secret key.
ConfigurableComponent - Interface in net.sourceforge.stripes.config
Interface which is extended by all the major configurable chunks of Stripes.
Configuration - Interface in net.sourceforge.stripes.config
Type safe interface for accessing configuration information used to configure Stripes.
configuration - Variable in class net.sourceforge.stripes.localization.DefaultLocalePicker
Stores a reference to the configuration passed in at initialization.
constructMultipartWrapper(HttpServletRequest) - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Responsible for constructing the MultipartWrapper object and setting it on to the instance variable 'multipart'.
contains(Object[], Object) - Static method in class net.sourceforge.stripes.util.CollectionUtil
Checks to see if an array contains an item.
containsHeader(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Returns true if the specified header was placed in the response.
CONTEXT_CLASS_NAME - Static variable in class net.sourceforge.stripes.controller.DefaultActionBeanContextFactory
The name of the configuration property used for the context class name.
convert(ActionBean, ParameterName, String[], Class<?>, Class<?>, ValidationMetadata, List<ValidationError>) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Converts the String[] of values for a given parameter in the HttpServletRequest into the desired type of Object.
convert(String, Class<? extends BigDecimal>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.BigDecimalTypeConverter
Implemented to parse a BigDecimal using the parse() support method.
convert(String, Class<? extends BigInteger>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.BigIntegerTypeConverter
Implemented to parse a BigDecimal and then remove any fractional part and return a BigInteger.
convert(String, Class<? extends Boolean>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.BooleanTypeConverter
Converts a String to a Boolean in accordance with the specification laid out in the class level javadoc.
convert(String, Class<? extends Byte>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.ByteTypeConverter
Converts a String to a Byte in accordance with the rules laid out in the class level javadoc.
convert(String, Class<? extends Character>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.CharacterTypeConverter
Converts the input String to a Character by taking the first character in the String and returning it.
convert(String, Class<? extends String>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.CreditCardTypeConverter
Validates the user input to ensure that it looks like a valid credit card number.
convert(String, Class<? extends Date>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.DateTypeConverter
Attempts to convert a String to a Date object.
convert(String, Class<? extends Double>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.DoubleTypeConverter
Converts the input to an object of type Double.
convert(String, Class<? extends String>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.EmailTypeConverter
Validates the user input to ensure that it is a valid email address.
convert(String, Class<? extends Enum>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.EnumeratedTypeConverter
 
convert(String, Class<? extends Float>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.FloatTypeConverter
Converts the input to an object of type Double.
convert(String, Class<? extends Integer>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.IntegerTypeConverter
 
convert(String, Class<? extends Long>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.LongTypeConverter
 
convert(String, Class<? extends Object>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.ObjectTypeConverter
Simple returns the input String un-modified in any way.
convert(String, Class<? extends Object>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.OneToManyTypeConverter
Converts the supplied String into one or more objects is the manner described in the class level JavaDoc.
convert(String, Class<? extends Number>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.PercentageTypeConverter
Converts the input to a subclass of Number based on the targetType provided.
convert(String, Class<? extends Short>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.ShortTypeConverter
 
convert(String, Class<? extends String>, Collection<ValidationError>) - Method in class net.sourceforge.stripes.validation.StringTypeConverter
Simply returns the input String un-modified in any way.
convert(String, Class<? extends T>, Collection<ValidationError>) - Method in interface net.sourceforge.stripes.validation.TypeConverter
Convert a String to the target type supported by this converter.
converter(Class<? extends TypeConverter>) - Method in class net.sourceforge.stripes.validation.ValidationMetadata
Sets the overridden TypeConveter to use to convert values.
converter() - Method in class net.sourceforge.stripes.validation.ValidationMetadata
Returns the overridden TypeConverter if there is one, or null.
convertToClass(Type, NodeEvaluation) - Method in class net.sourceforge.stripes.util.bean.PropertyExpressionEvaluation
Attempts to convert the Type object into a Class object.
CORE_INTERCEPTOR_LIST - Static variable in class net.sourceforge.stripes.config.RuntimeConfiguration
The Configuration Key for looking up the comma separated list of core interceptor classes.
CreditCardTypeConverter - Class in net.sourceforge.stripes.validation
A faux TypeConverter that validates that the String supplied is a valid credit card number.
CreditCardTypeConverter() - Constructor for class net.sourceforge.stripes.validation.CreditCardTypeConverter
 
CreditCardTypeConverter.Type - Enum in net.sourceforge.stripes.validation
 
CryptoUtil - Class in net.sourceforge.stripes.util
Cryptographic utility that can encrypt and decrypt Strings using a key stored in HttpSession.
CryptoUtil() - Constructor for class net.sourceforge.stripes.util.CryptoUtil
 

D

DateFormatter - Class in net.sourceforge.stripes.format
Implements a basic formatter for Date objects.
DateFormatter() - Constructor for class net.sourceforge.stripes.format.DateFormatter
 
DateTypeConverter - Class in net.sourceforge.stripes.validation
A TypeConverter that aggressively attempts to convert a String to a java.util.Date object.
DateTypeConverter() - Constructor for class net.sourceforge.stripes.validation.DateTypeConverter
 
debug(Throwable, Object...) - Method in class net.sourceforge.stripes.util.Log
Logs a Throwable and optional message parts at level debug.
debug(Object...) - Method in class net.sourceforge.stripes.util.Log
Logs one or more message parts at level debug.
debug(Object) - Method in class net.sourceforge.stripes.util.Log4JLogger
Logs a message with org.apache.log4j.Priority.DEBUG.
debug(Object, Throwable) - Method in class net.sourceforge.stripes.util.Log4JLogger
Logs a message with org.apache.log4j.Priority.DEBUG.
DEBUG_MODE - Static variable in class net.sourceforge.stripes.config.RuntimeConfiguration
The Configuration Key for enabling debug mode.
DECODE - Static variable in class net.sourceforge.stripes.util.Base64
Specify decoding.
decode(byte[], int, int, int) - Static method in class net.sourceforge.stripes.util.Base64
Very low-level access to decoding ASCII characters in the form of a byte array.
decode(String) - Static method in class net.sourceforge.stripes.util.Base64
Decodes data from Base64 notation, automatically detecting gzip-compressed data and decompressing it.
decode(String, int) - Static method in class net.sourceforge.stripes.util.Base64
Decodes data from Base64 notation, automatically detecting gzip-compressed data and decompressing it.
decodeFileToFile(String, String) - Static method in class net.sourceforge.stripes.util.Base64
Reads infile and decodes it to outfile.
decodeFromFile(String) - Static method in class net.sourceforge.stripes.util.Base64
Convenience method for reading a base64-encoded file and decoding it.
decodeToFile(String, String) - Static method in class net.sourceforge.stripes.util.Base64
Convenience method for decoding data to a file.
decodeToObject(String) - Static method in class net.sourceforge.stripes.util.Base64
Attempts to decode Base64 data and deserialize a Java Object within.
decrypt(String, HttpServletRequest) - Static method in class net.sourceforge.stripes.util.CryptoUtil
Deprecated. use CryptoUtil.decrypt(String) instead
decrypt(String) - Static method in class net.sourceforge.stripes.util.CryptoUtil
Takes in a base64 encoded and encrypted String that was generated by a call to CryptoUtil.encrypt(String) and decrypts it.
DEFAULT_ACTION_BEAN_SUFFIXES - Static variable in class net.sourceforge.stripes.controller.NameBasedActionResolver
Default list of suffixes (Bean, Action) to remove to the end of the Action Bean class name.
DEFAULT_BINDING_SUFFIX - Static variable in class net.sourceforge.stripes.controller.NameBasedActionResolver
Default suffix (.action) to add to URL bindings.
DEFAULT_EXPIRES - Static variable in annotation type net.sourceforge.stripes.action.HttpCache
Default value for HttpCache.expires().
DEFAULT_FOOTER - Static variable in class net.sourceforge.stripes.tag.ErrorsTag
The footer that will be emitted if no footer is defined in the resource bundle.
DEFAULT_FOOTER - Static variable in class net.sourceforge.stripes.tag.MessagesTag
The footer that will be emitted if no footer is defined in the resource bundle.
DEFAULT_HEADER - Static variable in class net.sourceforge.stripes.tag.ErrorsTag
The header that will be emitted if no header is defined in the resource bundle.
DEFAULT_HEADER - Static variable in class net.sourceforge.stripes.tag.MessagesTag
The header that will be emitted if no header is defined in the resource bundle.
DEFAULT_NAME - Static variable in class net.sourceforge.stripes.validation.ScopedLocalizableError
Default key that is used for looking up error messages.
DEFAULT_SOURCE_PAGE - Static variable in class net.sourceforge.stripes.mock.MockRoundtrip
Default value for the source page that generated this round trip request.
DEFAULT_TIMEOUT_IN_SECONDS - Static variable in class net.sourceforge.stripes.controller.FlashScope
The default timeout for a flash scope.
DefaultActionBeanContextFactory - Class in net.sourceforge.stripes.controller
Implements an ActionBeanContextFactory that allows for instantiation of application specific ActionBeanContext classes.
DefaultActionBeanContextFactory() - Constructor for class net.sourceforge.stripes.controller.DefaultActionBeanContextFactory
 
DefaultActionBeanPropertyBinder - Class in net.sourceforge.stripes.controller
Implementation of the ActionBeanPropertyBinder interface that uses Stripes' built in property expression support to perform JavaBean property binding.
DefaultActionBeanPropertyBinder() - Constructor for class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
 
DefaultActionBeanPropertyBinder.Row - Class in net.sourceforge.stripes.controller
An inner class that represents a "row" of form properties that all have the same index so that we can validate all those properties together.
DefaultActionBeanPropertyBinder.Row() - Constructor for class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder.Row
 
DefaultConfiguration - Class in net.sourceforge.stripes.config
Centralized location for defaults for all Configuration properties.
DefaultConfiguration() - Constructor for class net.sourceforge.stripes.config.DefaultConfiguration
 
DefaultExceptionHandler - Class in net.sourceforge.stripes.exception
Default ExceptionHandler implementation that makes it easy for users to extend and add custom handling for different types of exception.
DefaultExceptionHandler() - Constructor for class net.sourceforge.stripes.exception.DefaultExceptionHandler
 
DefaultExceptionHandler.HandlerProxy - Class in net.sourceforge.stripes.exception
Inner class that ties a class and method together an invokable object.
DefaultExceptionHandler.HandlerProxy(Object, Method) - Constructor for class net.sourceforge.stripes.exception.DefaultExceptionHandler.HandlerProxy
Constructs a new HandlerProxy that will tie together the instance and method used.
DefaultFormatterFactory - Class in net.sourceforge.stripes.format
Implementation of FormatterFactory that contains a set of built-in formatters.
DefaultFormatterFactory() - Constructor for class net.sourceforge.stripes.format.DefaultFormatterFactory
 
DefaultHandler - Annotation Type in net.sourceforge.stripes.action
Marker annotation to specify that a method within an ActionBean is the default handler for events if a specific event cannot be identified.
DefaultLocalePicker - Class in 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.
DefaultLocalePicker() - Constructor for class net.sourceforge.stripes.localization.DefaultLocalePicker
 
DefaultLocalizationBundleFactory - Class in net.sourceforge.stripes.localization
Very simple default implementation of a bundle factory.
DefaultLocalizationBundleFactory() - Constructor for class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
 
DefaultMultipartWrapperFactory - Class in net.sourceforge.stripes.controller.multipart
Default implementation of a factory for MultipartWrappers.
DefaultMultipartWrapperFactory() - Constructor for class net.sourceforge.stripes.controller.multipart.DefaultMultipartWrapperFactory
 
DefaultPopulationStrategy - Class in net.sourceforge.stripes.tag
Default implementation of the form input tag population strategy.
DefaultPopulationStrategy() - Constructor for class net.sourceforge.stripes.tag.DefaultPopulationStrategy
 
DefaultTagErrorRenderer - Class in net.sourceforge.stripes.tag
This default implementation of the TagErrorRenderer interface sets the html class attribute to 'error'.
DefaultTagErrorRenderer() - Constructor for class net.sourceforge.stripes.tag.DefaultTagErrorRenderer
 
DefaultTagErrorRendererFactory - Class in 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.
DefaultTagErrorRendererFactory() - Constructor for class net.sourceforge.stripes.tag.DefaultTagErrorRendererFactory
 
DefaultTypeConverterFactory - Class in 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.
DefaultTypeConverterFactory() - Constructor for class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
 
DefaultValidationMetadataProvider - Class in net.sourceforge.stripes.validation
An implementation of ValidationMetadataProvider that scans classes and their superclasses for properties annotated with Validate and/or ValidateNestedProperties and exposes the validation metadata specified by those annotations.
DefaultValidationMetadataProvider() - Constructor for class net.sourceforge.stripes.validation.DefaultValidationMetadataProvider
 
defaultValue - Variable in class net.sourceforge.stripes.controller.UrlBindingParameter
 
DefaultViewActionBean - Class in net.sourceforge.stripes.controller
A special purpose ActionBean that is used by the NameBasedActionResolver when a valid ActionBean cannot be found for a URL.
DefaultViewActionBean(Resolution) - Constructor for class net.sourceforge.stripes.controller.DefaultViewActionBean
 
DelegatingExceptionHandler - Class in net.sourceforge.stripes.exception
An alternative implementation of ExceptionHandler that discovers and automatically configures individual AutoExceptionHandler classes to handle specific types of exceptions.
DelegatingExceptionHandler() - Constructor for class net.sourceforge.stripes.exception.DelegatingExceptionHandler
 
delete() - Method in class net.sourceforge.stripes.action.FileBean
Deletes the temporary file associated with this file upload if one still exists.
destroy() - Method in class net.sourceforge.stripes.controller.DynamicMappingFilter
 
destroy() - Method in class net.sourceforge.stripes.controller.StripesFilter
Calls the cleanup() method on the log to release resources held by commons logging.
DispatcherHelper - Class in net.sourceforge.stripes.controller
Helper class that contains much of the logic used when dispatching requests in Stripes.
DispatcherHelper() - Constructor for class net.sourceforge.stripes.controller.DispatcherHelper
 
DispatcherServlet - Class in net.sourceforge.stripes.controller
Servlet that controls how requests to the Stripes framework are processed.
DispatcherServlet() - Constructor for class net.sourceforge.stripes.controller.DispatcherServlet
 
doAfterBody() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Manages iteration, running again if there are more errors to display.
doAfterBody() - Method in class net.sourceforge.stripes.tag.FieldMetadataTag
 
doAfterBody() - Method in class net.sourceforge.stripes.tag.FormTag
Just returns SKIP_BODY so that the body is included only once.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputButtonSupportTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Ensure that the body is evaluated only once.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputHiddenTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputLabelTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.InputTextTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.layout.LayoutComponentTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.layout.LayoutRenderTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.LinkTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.ParamTag
Does nothing.
doAfterBody() - Method in class net.sourceforge.stripes.tag.UrlTag
Does nothing.
doAfterEndTag() - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRenderer
Resets the tag's class attribute to it's original value in case the tag gets pooled.
doAfterEndTag() - Method in interface net.sourceforge.stripes.tag.TagErrorRenderer
Executed after the end of rendering of the input tag, including its body and end tag.
doBeforeStartTag() - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRenderer
Ensures that the tag's list of CSS classes includes the "error" class.
doBeforeStartTag() - Method in interface net.sourceforge.stripes.tag.TagErrorRenderer
Executed before the start of rendering of the input tag.
doBindingAndValidation(ExecutionContext, boolean) - Static method in class net.sourceforge.stripes.controller.DispatcherHelper
Responsible for performing binding and validation.
doBindingAndValidation(ExecutionContext) - Method in class net.sourceforge.stripes.controller.DispatcherServlet
Responsible for executing binding and validation for the current request.
doCatch(Throwable) - Method in class net.sourceforge.stripes.tag.FormTag
Rethrows the passed in throwable in all cases.
doCatch(Throwable) - Method in class net.sourceforge.stripes.tag.InputTagSupport
Rethrows the passed in throwable in all cases.
doCatch(Throwable) - Method in class net.sourceforge.stripes.tag.WizardFieldsTag
Rethrows the passed in throwable in all cases.
doCustomValidation(ExecutionContext, boolean) - Static method in class net.sourceforge.stripes.controller.DispatcherHelper
Responsible for coordinating the invocation of any custom validation logic exposed by the ActionBean.
doCustomValidation(ExecutionContext) - Method in class net.sourceforge.stripes.controller.DispatcherServlet
Responsible for executing custom validation methods for the current request.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputButtonSupportTag
Looks up the appropriate value to use for the submit button and then writes the tag out to the page.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Does the main work of the tag, including determining the tags state (checked or not) and writing out a singleton tag representing the checkbox.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputFileTag
Writes out a singleton tag representing the values stored on this tag instance.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputHiddenTag
Determines the value(s) that will be used for the tag and then proceeds to generate one or more hidden fields to contain those values.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputImageTag
Does the major work of the tag as described in the class level javadoc.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputLabelTag
Performs the main work of the tag as described in the class level javadoc.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Locates the option's parent select tag, determines selection state and then writes out an option tag with an appropriate body.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputPasswordTag
 
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Determines the state of the set of radio buttons and then writes the radio button to the output stream with checked="checked" or not as appropriate.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Writes out the close select tag (</select>).
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Abstract method implemented in child classes instead of doEndTag().
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Determines which source is applicable for the contents of the textarea and then writes out the textarea tag including the body.
doEndInputTag() - Method in class net.sourceforge.stripes.tag.InputTextTag
Determines which source is applicable for the value of the text field and then writes out the tag.
doEndTag() - Method in class net.sourceforge.stripes.tag.ErrorsFooterTag
 
doEndTag() - Method in class net.sourceforge.stripes.tag.ErrorsHeaderTag
 
doEndTag() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Output the error list if this was an empty body tag and we're fully controlling output*
doEndTag() - Method in class net.sourceforge.stripes.tag.FieldMetadataTag
 
doEndTag() - Method in class net.sourceforge.stripes.tag.FormatTag
 
doEndTag() - Method in class net.sourceforge.stripes.tag.FormTag
Writes things out in the following order: The form open tag Hidden fields for the form name and source page The buffered body content The form close tag
doEndTag() - Method in class net.sourceforge.stripes.tag.IndividualErrorTag
Outputs the error for the current iteration of the parent ErrorsTag.
doEndTag() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Optionally sorts the assembled entries and then renders them into a series of option tags using an instance of InputOptionTag to do the rendering work.
doEndTag() - Method in class net.sourceforge.stripes.tag.InputOptionsMapTag
Calls super.doEndTag() and cleans up instance variables so this instance may be reused.
doEndTag() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Final implementation of the doEndTag() method that allows the base InputTagSupport class to insert functionality before and after the tag performs it's doEndTag equivalent method.
doEndTag() - Method in class net.sourceforge.stripes.tag.layout.LayoutComponentTag
If the tag is nested in a LayoutRenderTag, provides the tag with the generated contents.
doEndTag() - Method in class net.sourceforge.stripes.tag.layout.LayoutDefinitionTag
Causes page evaluation to end once the end of the layout definition is reached.
doEndTag() - Method in class net.sourceforge.stripes.tag.layout.LayoutRenderTag
Invokes the named layout, providing it with the overridden components and provided parameters.
doEndTag() - Method in class net.sourceforge.stripes.tag.LinkTag
Prepends the context to the href attribute if necessary, and then folds all the registered parameters into the URL.
doEndTag() - Method in class net.sourceforge.stripes.tag.MessagesTag
Outputs the set of messages appropriate for this tag.
doEndTag() - Method in class net.sourceforge.stripes.tag.ParamTag
Figures out what to use as the value, and then finds the parent link and adds the parameter.
doEndTag() - Method in class net.sourceforge.stripes.tag.StripesTagSupport
Abstract method from the Tag interface.
doEndTag() - Method in class net.sourceforge.stripes.tag.UrlTag
Generates the URL and either writes it into the page or sets it in the appropraite JSP scope.
doEndTag() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
Does nothing.
doEndTag() - Method in class net.sourceforge.stripes.tag.WizardFieldsTag
Performs the main work of the tag, as described in the class level javadoc.
doExpressionValidation(ActionBean, ParameterName, List<Object>, ValidationMetadata, ValidationErrors) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Performs validation of attribute values using a JSP EL expression if one is defined in the @Validate annotation.
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class net.sourceforge.stripes.controller.DynamicMappingFilter
 
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class net.sourceforge.stripes.controller.StripesFilter
Performs the primary work of the filter, including constructing a StripesRequestWrapper to wrap the HttpServletRequest, and using the configured LocalePicker to decide which Locale will be used to process the request.
doFilter(ServletRequest, ServletResponse) - Method in class net.sourceforge.stripes.mock.MockFilterChain
Used to coordinate the execution of the filters.
doFinally() - Method in class net.sourceforge.stripes.tag.FormTag
Used to ensure that the form is always removed from the tag stack so that there is never any confusion about tag-parent hierarchies.
doFinally() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Used to ensure that the input tag is always removed from the tag stack so that there is never any confusion about tag-parent hierarchies.
doFinally() - Method in class net.sourceforge.stripes.tag.WizardFieldsTag
Used to ensure that the input tag is always removed from the tag stack so that there is never any confusion about tag-parent hierarchies.
doInitBody() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Sets the context variables for the current error and index
doInitBody() - Method in class net.sourceforge.stripes.tag.FieldMetadataTag
 
doInitBody() - Method in class net.sourceforge.stripes.tag.FormTag
No-op method.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputButtonSupportTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputHiddenTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputLabelTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.InputTextTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.layout.LayoutComponentTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.layout.LayoutRenderTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.LinkTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.ParamTag
Does nothing.
doInitBody() - Method in class net.sourceforge.stripes.tag.UrlTag
Does nothing.
DONT_BREAK_LINES - Static variable in class net.sourceforge.stripes.util.Base64
Don't break lines when encoding (violates strict Base64 specification)
DontAutoLoad - Annotation Type in net.sourceforge.stripes.config
When applied to a Stripes extension class (e.g., one that implements Formatter, TypeConverter, AutoExceptionHandler, etc.), this annotation indicates that the class should not be loaded via autodiscovery.
DontBind - Annotation Type in net.sourceforge.stripes.action
Marker annotation to specify that the event handled by the annotated method should skip LifecycleStage.BindingAndValidation altogether.
DontValidate - Annotation Type in net.sourceforge.stripes.action
Specify that the event handled by the annotated method should not have validation run on it before the handler is invoked.
doOneTimeConfiguration() - Method in class net.sourceforge.stripes.controller.DynamicMappingFilter
Perform initialization that can't be done in init(..).
doPostConversionValidations(ActionBean, Map<ParameterName, List<Object>>, ValidationErrors) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Performs basic post-conversion validations on the properties of the ActionBean after they have been converted to their rich type by the type conversion system.
doPreConversionValidations(ParameterName, String[], ValidationMetadata, List<ValidationError>) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Performs several basic validations on the String value supplied in the HttpServletRequest, based on information provided in annotations on the ActionBean.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputButtonSupportTag
Does nothing.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Does nothing.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputFileTag
Locates the parent tag and modifies it's method and enctype to be suitable for file upload.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputHiddenTag
Sets the tag up as a hidden tag.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputImageTag
Does nothing.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputLabelTag
Does nothing.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Does nothing.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Sets the input tag type to "radio".
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Writes out the opening <select name="foo"> tag.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Abstract method implemented in child classes instead of doStartTag().
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Does nothing.
doStartInputTag() - Method in class net.sourceforge.stripes.tag.InputTextTag
Sets type input tags type to "text".
doStartTag() - Method in class net.sourceforge.stripes.tag.ErrorsFooterTag
 
doStartTag() - Method in class net.sourceforge.stripes.tag.ErrorsHeaderTag
 
doStartTag() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Determines if the tag should display errors based on the action that it is displaying for, and then fetches the appropriate list of errors and makes sure it is non-empty.
doStartTag() - Method in class net.sourceforge.stripes.tag.FieldMetadataTag
 
doStartTag() - Method in class net.sourceforge.stripes.tag.FormatTag
 
doStartTag() - Method in class net.sourceforge.stripes.tag.FormTag
Does sanity checks and returns EVAL_BODY_BUFFERED.
doStartTag() - Method in class net.sourceforge.stripes.tag.IndividualErrorTag
Does nothing
doStartTag() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Iterates through the collection and generates the list of Entry objects that can then be sorted and rendered into options.
doStartTag() - Method in class net.sourceforge.stripes.tag.InputOptionsEnumerationTag
Attempts to instantiate the Class object representing the enum and fetch the values of the enum.
doStartTag() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Final implementation of the doStartTag() method that allows the base InputTagSupport class to insert functionality before and after the tag performs it's doStartTag equivalent method.
doStartTag() - Method in class net.sourceforge.stripes.tag.layout.LayoutComponentTag
Behaviour varies depending on whether the tag is nested inside a LayoutRenderTag or a LayoutDefinitionTag.
doStartTag() - Method in class net.sourceforge.stripes.tag.layout.LayoutDefinitionTag
Looks up the layout context that has been setup by a LayoutRenderTag.
doStartTag() - Method in class net.sourceforge.stripes.tag.layout.LayoutRenderTag
Pushes the values of any dynamic attributes into page context attributes for the duration of the tag.
doStartTag() - Method in class net.sourceforge.stripes.tag.LinkTag
Does nothing.
doStartTag() - Method in class net.sourceforge.stripes.tag.MessagesTag
Does nothing, all processing is performed in doEndTag().
doStartTag() - Method in class net.sourceforge.stripes.tag.ParamTag
Does nothing.
doStartTag() - Method in class net.sourceforge.stripes.tag.StripesTagSupport
Abstract method from the Tag interface.
doStartTag() - Method in class net.sourceforge.stripes.tag.UrlTag
Does nothing.
doStartTag() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
The main work method of the tag.
doStartTag() - Method in class net.sourceforge.stripes.tag.WizardFieldsTag
Skips over the body because there shouldn't be one.
DoubleTypeConverter - Class in net.sourceforge.stripes.validation
Basic TypeConverter that will convert from Strings to Numbers of type Double.
DoubleTypeConverter() - Constructor for class net.sourceforge.stripes.validation.DoubleTypeConverter
 
DynamicMappingFilter - Class in net.sourceforge.stripes.controller
A servlet filter that dynamically maps URLs to ActionBeans.
DynamicMappingFilter() - Constructor for class net.sourceforge.stripes.controller.DynamicMappingFilter
 
DynamicMappingFilter.ErrorTrappingResponseWrapper - Class in net.sourceforge.stripes.controller
An HttpServletResponseWrapper that traps HTTP errors by overriding sendError(int, ..).
DynamicMappingFilter.ErrorTrappingResponseWrapper(HttpServletResponse) - Constructor for class net.sourceforge.stripes.controller.DynamicMappingFilter.ErrorTrappingResponseWrapper
Wrap the given response.
DynamicMappingFilter.TempBufferWriter - Class in net.sourceforge.stripes.controller
A Writer that passes characters to a PrintWriter.
DynamicMappingFilter.TempBufferWriter(PrintWriter) - Constructor for class net.sourceforge.stripes.controller.DynamicMappingFilter.TempBufferWriter
 

E

ElFunctions - Class in net.sourceforge.stripes.tag
A collection of static functions that are included in the Stripes tag library.
ElFunctions() - Constructor for class net.sourceforge.stripes.tag.ElFunctions
 
EmailTypeConverter - Class in net.sourceforge.stripes.validation
A faux TypeConverter that validates that the String supplied is a valid email address.
EmailTypeConverter() - Constructor for class net.sourceforge.stripes.validation.EmailTypeConverter
 
empty(String[]) - Static method in class net.sourceforge.stripes.util.CollectionUtil
Checks to see if the array contains any values that are non-null non empty-string values.
ENCODE - Static variable in class net.sourceforge.stripes.util.Base64
Specify encoding.
encode(String) - Static method in class net.sourceforge.stripes.util.HtmlUtil
Replaces special HTML characters from the set [<, >, ", ', &] with their HTML escape codes.
encodeBytes(byte[]) - Static method in class net.sourceforge.stripes.util.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int) - Static method in class net.sourceforge.stripes.util.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int) - Static method in class net.sourceforge.stripes.util.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int, int) - Static method in class net.sourceforge.stripes.util.Base64
Encodes a byte array into Base64 notation.
encodeFileToFile(String, String) - Static method in class net.sourceforge.stripes.util.Base64
Reads infile and encodes it to outfile.
encodeFromFile(String) - Static method in class net.sourceforge.stripes.util.Base64
Convenience method for reading a binary file and base64-encoding it.
encodeObject(Serializable) - Static method in class net.sourceforge.stripes.util.Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
encodeObject(Serializable, int) - Static method in class net.sourceforge.stripes.util.Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
encodeRedirectURL(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Returns the URL unchanged.
encodeRedirectUrl(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Returns the URL unchanged.
encodeToFile(byte[], String) - Static method in class net.sourceforge.stripes.util.Base64
Convenience method for encoding data to a file.
encodeURL(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Returns the URL unchanged.
encodeUrl(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Returns the URL unchanged.
encodings - Variable in class net.sourceforge.stripes.localization.DefaultLocalePicker
Contains a map of Locale to preferred character encoding.
encrypt(String, HttpServletRequest) - Static method in class net.sourceforge.stripes.util.CryptoUtil
Deprecated. use CryptoUtil.encrypt(String) instead
encrypt(String) - Static method in class net.sourceforge.stripes.util.CryptoUtil
Takes in a String, encrypts it and then base64 encodes the resulting byte[] so that it can be transmitted and stored as a String.
encrypted(boolean) - Method in class net.sourceforge.stripes.validation.ValidationMetadata
Sets the encrypted flag for this field.
encrypted() - Method in class net.sourceforge.stripes.validation.ValidationMetadata
Returns true if the field in question is encrypted.
EnumeratedTypeConverter - Class in net.sourceforge.stripes.validation
Converts the String form of an Enumerated type into the Enum value that it represents.
EnumeratedTypeConverter() - Constructor for class net.sourceforge.stripes.validation.EnumeratedTypeConverter
 
EnumFormatter - Class in net.sourceforge.stripes.format
A simple formatter for Enum classes that always returns the value of Enum.name().
EnumFormatter() - Constructor for class net.sourceforge.stripes.format.EnumFormatter
 
equals(Object) - Method in class net.sourceforge.stripes.action.LocalizableMessage
Generated equals method which will return true if the other object is of the same type as this instance, and would produce the same user message.
equals(Object) - Method in class net.sourceforge.stripes.action.SimpleMessage
Checks equality by ensuring that the current instance and the 'other' instance are instances of the same class (though not necessarily SimpleMessage!) and that the message String and replacement parameters provided are the same.
equals(Object) - Method in class net.sourceforge.stripes.controller.ParameterName
Checks for equality as efficiently as possible.
equals(Object) - Method in class net.sourceforge.stripes.controller.UrlBinding
 
equals(Object) - Method in class net.sourceforge.stripes.controller.UrlBindingParameter
 
equals(Object) - Method in class net.sourceforge.stripes.validation.LocalizableError
Generated equals method that compares each field and super.equals().
equals(Object) - Method in class net.sourceforge.stripes.validation.ScopedLocalizableError
Generated equals method that checks all fields and super.equals().
equals(Object) - Method in class net.sourceforge.stripes.validation.SimpleError
Generated equals method that ensures the message, field, parameters and action path are all equal.
error(Throwable, Object...) - Method in class net.sourceforge.stripes.util.Log
Logs a Throwable and optional message parts at level error.
error(Object...) - Method in class net.sourceforge.stripes.util.Log
Logs one or more message parts at level error.
error(Object) - Method in class net.sourceforge.stripes.util.Log4JLogger
Logs a message with org.apache.log4j.Priority.ERROR.
error(Object, Throwable) - Method in class net.sourceforge.stripes.util.Log4JLogger
Logs a message with org.apache.log4j.Priority.ERROR.
ERROR_DEFAULT_SCOPE - Static variable in interface net.sourceforge.stripes.validation.expression.ExpressionExecutor
The default scope to use when constructing errors.
ERROR_KEY - Static variable in interface net.sourceforge.stripes.validation.expression.ExpressionExecutor
The error key to use when constructing errors.
ERROR_MESSAGE_BUNDLE - Static variable in class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
The configuration parameter for changing the default error message resource bundle.
errorRenderer - Variable in class net.sourceforge.stripes.tag.InputTagSupport
The error renderer to be utilized for error output of this input tag
ErrorResolution - Class in net.sourceforge.stripes.action
Resolution for sending HTTP error messages back to the client.
ErrorResolution(int) - Constructor for class net.sourceforge.stripes.action.ErrorResolution
Sends an error response to the client using the specified status code and clears the buffer.
ErrorResolution(int, String) - Constructor for class net.sourceforge.stripes.action.ErrorResolution
Sends an error response to the client using the specified status code and message and clears the buffer.
ErrorsFooterTag - Class in net.sourceforge.stripes.tag
Can be used within a stripes:errors tag to show a footer on an error list.
ErrorsFooterTag() - Constructor for class net.sourceforge.stripes.tag.ErrorsFooterTag
 
ErrorsHeaderTag - Class in net.sourceforge.stripes.tag
Can be used within a stripes:errors tag to show a header on an error list.
ErrorsHeaderTag() - Constructor for class net.sourceforge.stripes.tag.ErrorsHeaderTag
 
ErrorsTag - Class in 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.
ErrorsTag() - Constructor for class net.sourceforge.stripes.tag.ErrorsTag
 
ErrorsTagExtraInfo - Class in net.sourceforge.stripes.tag
This tag extra info exposes index and error context variables for the body of the errors tag.
ErrorsTagExtraInfo() - Constructor for class net.sourceforge.stripes.tag.ErrorsTagExtraInfo
 
evaluate(ActionBean, ParameterName, List<Object>, ValidationMetadata, ValidationErrors) - Method in interface net.sourceforge.stripes.validation.expression.ExpressionExecutor
Performs validation of an ActionBean property using the expression contained within the validation metadata.
evaluate(ActionBean, ParameterName, List<Object>, ValidationMetadata, ValidationErrors) - Method in class net.sourceforge.stripes.validation.expression.ExpressionExecutorSupport
 
evaluate(ActionBean, ParameterName, List<Object>, ValidationMetadata, ValidationErrors) - Static method in class net.sourceforge.stripes.validation.expression.ExpressionValidator
Run expression validation on the bean property provided with the values provided.
evaluate(ActionBean, ParameterName, List<Object>, ValidationMetadata, ValidationErrors) - Method in class net.sourceforge.stripes.validation.expression.Jsp21ExpressionExecutor
 
evaluateExpression(String, Class<R>) - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
Evaluates a single expression and returns the result.
EvaluationException - Exception in net.sourceforge.stripes.util.bean
Exception that is raised when a parsed expression cannot be evaluated against a bean for any reason.
EvaluationException(String) - Constructor for exception net.sourceforge.stripes.util.bean.EvaluationException
Constructs an exception with the supplied message.
EvaluationException(String, Throwable) - Constructor for exception net.sourceforge.stripes.util.bean.EvaluationException
Constructs an exception with the supplied message and causing exception.
EventInfo - Class in net.sourceforge.stripes.tools
Encapsulates meta-information about a single event within an ActionBean.
EventInfo() - Constructor for class net.sourceforge.stripes.tools.EventInfo
 
EXCEPTION_HANDLER - Static variable in class net.sourceforge.stripes.config.RuntimeConfiguration
The Configuration Key for looking up the name of the ExceptionHandler class
ExceptionHandler - Interface in net.sourceforge.stripes.exception
Component that is delegated to in order to handle any exceptions that are raised during the processing of a request which is processed through the Stripes Filter.
execute(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.action.ErrorResolution
 
execute(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.action.ForwardResolution
Attempts to forward the user to the specified path.
execute(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.action.RedirectResolution
Attempts to redirect the user to the specified URL.
execute(HttpServletRequest, HttpServletResponse) - Method in interface net.sourceforge.stripes.action.Resolution
Called by the Stripes dispatcher to invoke the Resolution.
execute(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.action.StreamingResolution
Streams data from the InputStream or Reader to the response's OutputStream or PrinterWriter, using a moderately sized buffer to ensure that the operation is reasonable efficient.
execute(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.ajax.JavaScriptResolution
Converts the object passed in to JavaScript and streams it back to the client.
execute() - Method in class net.sourceforge.stripes.mock.MockRoundtrip
Executes the request in the servlet context that was provided in the constructor.
execute(String) - Method in class net.sourceforge.stripes.mock.MockRoundtrip
Executes the request in the servlet context that was provided in the constructor.
executeResolution(ExecutionContext, Resolution) - Static method in class net.sourceforge.stripes.controller.DispatcherHelper
Responsible for executing the Resolution returned by the request.
executeResolution(ExecutionContext, Resolution) - Method in class net.sourceforge.stripes.controller.DispatcherServlet
Responsible for executing the Resolution for the current request.
ExecutionContext - Class in net.sourceforge.stripes.controller
Holds the execution context for processing a single request.
ExecutionContext() - Constructor for class net.sourceforge.stripes.controller.ExecutionContext
 
export(Object) - Method in class net.sourceforge.stripes.tag.VarTagSupport
Assigns the value to an attribute named by var in the named scope.
expression(String) - Method in class net.sourceforge.stripes.validation.ValidationMetadata
Sets the expression that should be used to validate values.
expression() - Method in class net.sourceforge.stripes.validation.ValidationMetadata
Returns the overridden TypeConverter if there is one, or null.
ExpressionException - Exception in net.sourceforge.stripes.util.bean
Root exception type which all exceptions in this package extend.
ExpressionException(String) - Constructor for exception net.sourceforge.stripes.util.bean.ExpressionException
Constructs an exception with the supplied message.
ExpressionException(String, Throwable) - Constructor for exception net.sourceforge.stripes.util.bean.ExpressionException
Constructs an exception with the supplied message and causing exception.
ExpressionExecutor - Interface in net.sourceforge.stripes.validation.expression
Simple interface that specifies how Stripes will invoke expression based validation.
ExpressionExecutorSupport - Class in net.sourceforge.stripes.validation.expression
A base class that provides the general plumbing for running expression validation using the old JSP 2.0 style ExpressionEvaluator.
ExpressionExecutorSupport() - Constructor for class net.sourceforge.stripes.validation.expression.ExpressionExecutorSupport
 
ExpressionExecutorSupport.BeanVariableResolver - Class in net.sourceforge.stripes.validation.expression
A JSP EL VariableResolver that first attempts to look up the value of the variable as a first level property on the ActionBean, and if does not exist then delegates to the built in resolver.
ExpressionValidator - Class in net.sourceforge.stripes.validation.expression
A Facade to the classes that perform expression based validation.
ExpressionValidator() - Constructor for class net.sourceforge.stripes.validation.expression.ExpressionValidator
 

F

fatal(Throwable, Object...) - Method in class net.sourceforge.stripes.util.Log
Logs a Throwable and optional message parts at level fatal.
fatal(Object...) - Method in class net.sourceforge.stripes.util.Log
Logs one or more message parts at level fatal.
fatal(Object) - Method in class net.sourceforge.stripes.util.Log4JLogger
Logs a message with org.apache.log4j.Priority.FATAL.
fatal(Object, Throwable) - Method in class net.sourceforge.stripes.util.Log4JLogger
Logs a message with org.apache.log4j.Priority.FATAL.
FIELD_NAME_BUNDLE - Static variable in class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
The configuration parameter for changing the default field name resource bundle.
fieldErrors - Variable in class net.sourceforge.stripes.tag.InputTagSupport
A list of the errors related to this input tag instance
FieldMetadataTag - Class in net.sourceforge.stripes.tag
Field metadata tag for use with the Stripes framework.
FieldMetadataTag() - Constructor for class net.sourceforge.stripes.tag.FieldMetadataTag
 
FieldMetadataTag.Var - Class in net.sourceforge.stripes.tag
This is what is placed into the request attribute.
FILE_PARAM - Static variable in class net.sourceforge.stripes.tools.SiteStructureTool
Option name that controls the file to which output is written.
FileBean - Class in net.sourceforge.stripes.action
Represents a file that was submitted as part of an HTTP POST request.
FileBean(File, String, String) - Constructor for class net.sourceforge.stripes.action.FileBean
Constructs a FileBean pointing to an on-disk representation of the file uploaded by the user.
FileBean(File, String, String, String) - Constructor for class net.sourceforge.stripes.action.FileBean
Constructs a FileBean pointing to an on-disk representation of the file uploaded by the user.
FileUploadLimitExceededException - Exception in net.sourceforge.stripes.controller
Exception that is thrown when the post size of a multipart/form post used for file upload exceeds the configured maximum size.
FileUploadLimitExceededException(long, long) - Constructor for exception net.sourceforge.stripes.controller.FileUploadLimitExceededException
Constructs a new exception that contains the limit that was violated, and the size of the post that violated it, both in bytes.
fillInValidationErrors(ExecutionContext) - Static method in class net.sourceforge.stripes.controller.DispatcherHelper
Makes sure that validation errors have all the necessary information to render themselves properly, including the UrlBinding of the action bean and the field value if it hasn't already been set.
find(ResolverUtil.Test, String) - Method in class net.sourceforge.stripes.util.ResolverUtil
Scans for classes starting at the package provided and descending into subpackages.
findAccessibleMethod(Method) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Attempts to find an accessible version of the method passed in, where accessible is defined as the method itself being public and the declaring class being public.
findAnnotated(Class<? extends Annotation>, String...) - Method in class net.sourceforge.stripes.util.ResolverUtil
Attempts to discover classes that are annotated with the annotation.
findClass(String) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Utility method used to load a class.
findClasses() - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Helper method to find implementations of ActionBean in the packages specified in Configuration using the ResolverUtil class.
findClasses() - Method in class net.sourceforge.stripes.exception.DelegatingExceptionHandler
Helper method to find implementations of AutoExceptionHandler in the packages specified in Configuration using the ResolverUtil class.
findCustomValidationMethods(Class<? extends ActionBean>) - Static method in class net.sourceforge.stripes.controller.DispatcherHelper
Finds and returns all methods in the ActionBean class and it's superclasses that are marked with the ValidationMethod annotation and returns them ordered by priority (and alphabetically within priorities).
findFormatterClass(Class<?>) - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Search for a formatter class that best matches the requested class, first checking the specified class, then all the interfaces it implements, then all its superclasses and the interfaces they implement, and finally all the superclasses of the interfaces implemented by targetClass.
findImplementations(Class<?>, String...) - Method in class net.sourceforge.stripes.util.ResolverUtil
Attempts to discover classes that are assignable to the type provided.
findInInterfaces(Class<?>, Class<?>...) - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Called second by DefaultFormatterFactory.findFormatterClass(Class), after DefaultFormatterFactory.findInSuperclasses(Class).
findInSuperclasses(Class<?>) - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Called first by DefaultFormatterFactory.findFormatterClass(Class).
findJarForResource(URL, String) - Method in class net.sourceforge.stripes.util.ResolverUtil
Attempts to deconstruct the given URL to find a JAR file containing the resource referenced by the URL.
findSpringBean(ApplicationContext, String, Class<?>, boolean) - Static method in class net.sourceforge.stripes.integration.spring.SpringHelper
Looks up a Spring managed bean from an Application Context.
findStripesWrapper(ServletRequest) - Static method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Looks for the StripesRequesetWrapper for the specific request and returns it.
findTypeConverterClass(Class<?>) - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Search for a type converter class that best matches the requested class.
findView(String) - Method in class net.sourceforge.stripes.controller.NameBasedActionResolver
Attempts to locate a default view for the urlBinding provided and return a ForwardResolution that will take the user to the view.
flash(ActionBean) - Method in class net.sourceforge.stripes.action.RedirectResolution
Causes the ActionBean supplied to be added to the Flash scope and made available during the next request cycle.
flashInbound(HttpServletRequest) - Method in class net.sourceforge.stripes.controller.StripesFilter
Checks to see if there is a flash scope identified by a parameter to the current request, and if there is, retrieves items from the flash scope and moves them back to request attributes.
flashOutbound(HttpServletRequest) - Method in class net.sourceforge.stripes.controller.StripesFilter
Manages the work that ensures that flash scopes get cleaned up properly when requests go missing.
FlashRequest - Class in net.sourceforge.stripes.controller
Captures the state of an HttpServletRequest so that the information contained therein can be carried over to the next request for use by the flash scope.
FlashRequest(HttpServletRequest) - Constructor for class net.sourceforge.stripes.controller.FlashRequest
Creates a new FlashRequest by copying all appropriate attributes from the prototype request supplied.
FlashResponseInvocationHandler - Class in net.sourceforge.stripes.controller
Used as the InvocationHandler for a dynamic proxy that replaces the HttpServletResponse on ActionBeanContexts in the flash scope after the current request cycle has completed.
FlashResponseInvocationHandler() - Constructor for class net.sourceforge.stripes.controller.FlashResponseInvocationHandler
 
FlashScope - Class in 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.
FlashScope(HttpServletRequest, Integer) - Constructor for class net.sourceforge.stripes.controller.FlashScope
Protected constructor to prevent random creation of FlashScopes.
FloatTypeConverter - Class in net.sourceforge.stripes.validation
Basic TypeConverter that converts Strings to Numbers of type Float.
FloatTypeConverter() - Constructor for class net.sourceforge.stripes.validation.FloatTypeConverter
 
flush() - Method in class net.sourceforge.stripes.controller.DynamicMappingFilter.TempBufferWriter
 
flushBase64() - Method in class net.sourceforge.stripes.util.Base64.OutputStream
Method added by PHIL.
flushBuffer() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Has no effect.
format(Date) - Method in class net.sourceforge.stripes.format.DateFormatter
Formats a Date as a String using the rules supplied when the formatter was built.
format(Enum<?>) - Method in class net.sourceforge.stripes.format.EnumFormatter
Formats the supplied value as a String.
format(T) - Method in interface net.sourceforge.stripes.format.Formatter
Formats the supplied value as a String.
format(Number) - Method in class net.sourceforge.stripes.format.NumberFormatter
Formats the number supplied as a String.
format(Object) - Method in class net.sourceforge.stripes.format.ObjectFormatter
Converts the supplied parameter to a string using String.valueOf().
format(Object) - Method in class net.sourceforge.stripes.tag.FormatTag
Attempts to format an object using an appropriate Formatter.
format(Object) - Method in class net.sourceforge.stripes.tag.InputTagSupport
Calls InputTagSupport.format(Object, boolean) with forOutput set to true.
format(Object, boolean) - Method in class net.sourceforge.stripes.tag.InputTagSupport
Attempts to format an object using the Stripes formatting system.
format(Object) - Method in class net.sourceforge.stripes.util.UrlBuilder
Attempts to format an object using an appropriate Formatter.
FORMAT_PARAM - Static variable in class net.sourceforge.stripes.tools.SiteStructureTool
Option name that controls the output format of the annotation processor.
formatStrings - Static variable in class net.sourceforge.stripes.validation.DateTypeConverter
The default set of date patterns used to parse dates with SimpleDateFormat.
FormatTag - Class in net.sourceforge.stripes.tag
This tag accepts an object and formats it using an appropriate Formatter.
FormatTag() - Constructor for class net.sourceforge.stripes.tag.FormatTag
 
Formatter<T> - Interface in net.sourceforge.stripes.format
Interface that is used to provide a relatively simple formatting interface to the rest of the system.
FORMATTER_FACTORY - Static variable in class net.sourceforge.stripes.config.RuntimeConfiguration
The Configuration Key for looking up the name of the FormatterFactory class.
FormatterFactory - Interface in net.sourceforge.stripes.format
Interface for creating instances of formatter classes that are capable of formatting the types specified into Strings.
FormTag - Class in net.sourceforge.stripes.tag
Form tag for use with the Stripes framework.
FormTag() - Constructor for class net.sourceforge.stripes.tag.FormTag
 
forward(ServletRequest, ServletResponse) - Method in class net.sourceforge.stripes.mock.MockRequestDispatcher
Simply stores the URL that was requested for forward, and returns.
ForwardResolution - Class in 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.
ForwardResolution(String) - Constructor for class net.sourceforge.stripes.action.ForwardResolution
Simple constructor that takes in the path to forward the user to.
ForwardResolution(Class<? extends ActionBean>) - Constructor for class net.sourceforge.stripes.action.ForwardResolution
Constructs a ForwardResolution that will forward to the URL appropriate for the ActionBean supplied.
ForwardResolution(Class<? extends ActionBean>, String) - Constructor for class net.sourceforge.stripes.action.ForwardResolution
Constructs a ForwardResolution that will forward to the URL appropriate for the ActionBean supplied.

G

generateHashCode(byte[]...) - Static method in class net.sourceforge.stripes.util.CryptoUtil
Generates and returns a hash code from the given byte arrays
get(String) - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
Gets the value of the named attribute, or null if it is not set.
getAccept() - Method in class net.sourceforge.stripes.tag.FormTag
 
getAccept() - Method in class net.sourceforge.stripes.tag.InputFileTag
Returns the value, if any, set with setAccept().
getAcceptcharset() - Method in class net.sourceforge.stripes.tag.FormTag
 
getAccesskey() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getAction() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Returns the value set with setAction().
getAction() - Method in class net.sourceforge.stripes.tag.FieldMetadataTag
 
getAction() - Method in class net.sourceforge.stripes.tag.FormTag
 
getActionBean(ActionBeanContext) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Resolves the Class, implementing ActionBean, that should be used to handle the request.
getActionBean(ActionBeanContext, String) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Returns the ActionBean class that responds to the path provided.
getActionBean(ActionBeanContext) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Gets the logical name of the ActionBean that should handle the request.
getActionBean(ActionBeanContext, String) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Returns the ActionBean class that is bound to the UrlBinding supplied.
getActionBean() - Method in class net.sourceforge.stripes.controller.ExecutionContext
Retrieves the ActionBean instance that is associated with the current request.
getActionBean(ActionBeanContext, String) - Method in class net.sourceforge.stripes.controller.NameBasedActionResolver
Overridden to trap the exception that is thrown when a URL cannot be mapped to an ActionBean and then attempt to construct a dummy ActionBean that will forward the user to an appropriate view.
getActionBean(Class<A>) - Method in class net.sourceforge.stripes.mock.MockRoundtrip
Gets the instance of the ActionBean type provided that was instantiated by Stripes to handle the request.
getActionBean() - Method in class net.sourceforge.stripes.tag.FormTag
Fetches the ActionBean associated with the form if one is present.
getActionBean() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Fetches the ActionBean associated with the form if one is present.
getActionBeanClass() - Method in class net.sourceforge.stripes.tag.FormTag
Lazily looks up and returns the type of action bean the form will submit to.
getActionBeanClasses() - Method in interface net.sourceforge.stripes.controller.ActionResolver
Get all the classes implementing ActionBean that are recognized by this ActionResolver.
getActionBeanClasses() - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Get all the classes implementing ActionBean that are recognized by this ActionResolver.
getActionBeanClasses() - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Get all the classes implementing ActionBean
getActionBeanContext() - Method in class net.sourceforge.stripes.controller.ExecutionContext
Retrieves the ActionBeanContext associated with the current request.
getActionBeanContextFactory() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of an action bean context factory which will used throughout Stripes to manufacture ActionBeanContext objects.
getActionBeanContextFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns the configured ActionBeanContextFactory.
getActionBeanPropertyBinder() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of ActionBeanPropertyBinder that is responsible for binding all properties to all ActionBeans at runtime.
getActionBeanPropertyBinder() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of DefaultActionBeanPropertyBinder unless a subclass has overridden the default.
getActionBeanStack(HttpServletRequest, boolean) - Method in class net.sourceforge.stripes.controller.DispatcherServlet
Fetches, and lazily creates if required, a Stack in the request to store ActionBeans should the current request involve forwards or includes to other ActionBeans.
getActionBeanSuffixes() - Method in class net.sourceforge.stripes.controller.NameBasedActionResolver
Returns a list of suffixes to be removed from the end of the Action Bean class name, if present.
getActionBeanType(String) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Fetches the Class representing the type of ActionBean that has been bound to the URL contained within the path supplied.
getActionBeanType(String) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Fetches the Class representing the type of ActionBean that would respond were a request made with the path specified.
getActionBeanType(Object) - Method in class net.sourceforge.stripes.tag.StripesTagSupport
Helper method that takes an attribute which may be either a String class name or a Class object and returns the Class representing the appropriate ActionBean.
getActionBeanUrl(Object) - Method in class net.sourceforge.stripes.tag.StripesTagSupport
Similar to the StripesTagSupport.getActionBeanType(Object) method except that instead of returning the Class of ActionBean it returns the URL Binding of the ActionBean.
getActionBeanUrlBinding() - Method in class net.sourceforge.stripes.tag.FormTag
Get the URL binding for the form's ActionBean from the ActionResolver.
getActionPath() - Method in class net.sourceforge.stripes.validation.SimpleError
Provides subclasses access to the name of the form on which the errored field occurs.
getActionPath() - Method in interface net.sourceforge.stripes.validation.ValidationError
Returns the action path of the form/ActionBean, if one was supplied.
getActionResolver() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of ActionResolver that will be used by Stripes to lookup and resolve ActionBeans.
getActionResolver() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of NameBasedActionResolver unless a subclass has overridden the default.
getActualTypeArguments(Class<?>, Class<?>) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Returns an array of Type objects representing the actual type arguments to targetType used by clazz.
getAfterMethods(LifecycleStage) - Method in class net.sourceforge.stripes.controller.BeforeAfterMethodInterceptor.FilterMethods
Gets the Before methods for the given LifecycleStage.
getAlign() - Method in class net.sourceforge.stripes.tag.InputImageTag
 
getAllFlashScopes(HttpServletRequest) - Static method in class net.sourceforge.stripes.controller.FlashScope
Gets the collection of all flash scopes present in the current session.
getAlt() - Method in class net.sourceforge.stripes.tag.InputImageTag
 
getAnchor() - Method in class net.sourceforge.stripes.action.OnwardResolution
Get the name of the anchor to be appended to the URL.
getAnchor() - Method in class net.sourceforge.stripes.action.RedirectResolution
This method is overridden to make it public.
getAnchor() - Method in class net.sourceforge.stripes.tag.LinkTagSupport
Gets the anchor element that is appended at the end of the URL.
getAnchor() - Method in class net.sourceforge.stripes.util.UrlBuilder
Gets the anchor, if any, that will be appended to the URL.
getAnnotation(Class<?>) - Method in class net.sourceforge.stripes.controller.BindingPolicyManager
Get the StrictBinding annotation for a class, checking all its superclasses if necessary.
getAnnotation(Method, Class<? extends ActionBean>) - Method in class net.sourceforge.stripes.controller.HttpCacheInterceptor
Look for a HttpCache annotation on the method first and then on the class and its superclasses.
getAttribute(String) - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getAttribute(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the named request attribute from an internal Map.
getAttribute(String) - Method in class net.sourceforge.stripes.mock.MockHttpSession
Returns the value of the named attribute from an internal Map.
getAttribute(String) - Method in class net.sourceforge.stripes.mock.MockServletContext
Gets an attribute that has been set on the context (i.e.
getAttributeNames() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getAttributeNames() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets an enumeration of all request attribute names.
getAttributeNames() - Method in class net.sourceforge.stripes.mock.MockHttpSession
Returns an enumeration of all the attribute names in the session.
getAttributeNames() - Method in class net.sourceforge.stripes.mock.MockServletContext
Returns an enumeration of all the names of attributes in the context.
getAttributes() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
Gets the map containing the attributes of the tag.
getAuthType() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getAuthType() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the auth type being used by this request.
getBasePackages() - Method in class net.sourceforge.stripes.controller.NameBasedActionResolver
Returns a set of package names (fully qualified or not) that should be removed from the start of a classname before translating the name into a URL Binding.
getBaseURL(String, Collection<UrlBuilder.Parameter>) - Method in class net.sourceforge.stripes.util.UrlBuilder
Get the base URL (without a query string).
getBean() - Method in class net.sourceforge.stripes.util.bean.PropertyExpressionEvaluation
Fetches the bean which was supplied as the starting point for evaluation in the constructor to this evaluation.
getBeanClass() - Method in class net.sourceforge.stripes.controller.BindingPolicyManager
Get the bean class.
getBeanClass() - Method in class net.sourceforge.stripes.controller.UrlBindingParameter
Get the ActionBean class to which the UrlBinding applies.
getBeanclass() - Method in class net.sourceforge.stripes.tag.FieldMetadataTag
Corresponding getter for 'beanclass', will always return null.
getBeanclass() - Method in class net.sourceforge.stripes.tag.FormTag
Corresponding getter for 'beanclass', will always return null.
getBeanclass() - Method in class net.sourceforge.stripes.tag.LinkTagSupport
Gets the bean class (String FQN or Class) to generate a link for.
getBeanclass() - Method in class net.sourceforge.stripes.validation.SimpleError
Returns the class of the ActionBean associated to the request.
getBeanclass() - Method in interface net.sourceforge.stripes.validation.ValidationError
Returns the class of the ActionBean associated to the request.
getBeanPropertyType(Class<?>, String) - Method in class net.sourceforge.stripes.util.bean.PropertyExpressionEvaluation
Fetches the type of a property with the given name on the Class of the specified type.
getBeanType() - Method in class net.sourceforge.stripes.controller.UrlBinding
Get the ActionBean class to which this binding applies.
getBeforeMethods(LifecycleStage) - Method in class net.sourceforge.stripes.controller.BeforeAfterMethodInterceptor.FilterMethods
Gets the Before methods for the given LifecycleStage.
getBinding(String) - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Examines a URI (as returned by HttpUtil.getRequestedPath(HttpServletRequest)) and returns the associated binding, if any.
getBinding(HttpServletRequest) - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Examines a servlet request and returns the associated binding, if any.
getBinding() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
Get the UrlBinding of the requested ActionBean
getBindingPrototype(Class<? extends ActionBean>) - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Get the UrlBinding prototype associated with the given ActionBean type.
getBindingPrototype(String) - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Examines a URI (as returned by HttpUtil.getRequestedPath(HttpServletRequest)) and returns the associated binding prototype, if any.
getBindingPrototype(HttpServletRequest) - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Examines a servlet request and returns the associated binding prototype, if any.
getBindingSuffix() - Method in class net.sourceforge.stripes.controller.NameBasedActionResolver
Returns a non-null String suffix to be used when constructing URL bindings.
getBodyContent() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
Returns the BodyContent of the tag if one has been provided by the JSP container.
getBodyContentAsString() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
Checks to see if there is a body content for this tag, and if its value is non-null and non-zero-length.
getBootstrapPropertyResolver() - Method in interface net.sourceforge.stripes.config.Configuration
Implementations should implement this method to simply return a reference to the BootstrapPropertyResolver passed to the Configuration at initialization time.
getBootstrapPropertyResolver() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns a reference to the resolver supplied at initialization time.
getBufferSize() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Always returns 0.
getBytes() - Method in class net.sourceforge.stripes.mock.MockServletOutputStream
Returns the array of bytes that have been written to the output stream.
getCachedPaths(UrlBinding) - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Get a list of the request paths that will be wired directly to an ActionBean.
getCachedPrefixes(UrlBinding) - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Get a list of the request path prefixes that could map to an ActionBean.
getCardType(String) - Static method in class net.sourceforge.stripes.validation.CreditCardTypeConverter
Determines the type of card from the card number passed in.
getCharacterEncoding() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getCharacterEncoding() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the character encoding, defaults to UTF-8.
getCharacterEncoding() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Gets the character encoding (defaults to UTF-8).
getCharset() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getChecked() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Returns the value originally set using setChecked().
getChecked() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Returns the value set with setChecked().
getCipher(int) - Static method in class net.sourceforge.stripes.util.CryptoUtil
Gets the secret key that should be used to encrypt and decrypt values for the current request.
getClasses() - Method in class net.sourceforge.stripes.util.ResolverUtil
Provides access to the classes discovered so far.
getClassLoader() - Method in class net.sourceforge.stripes.util.ResolverUtil
Returns the classloader that will be used for scanning for classes.
getClassName() - Method in class net.sourceforge.stripes.tools.ActionBeanInfo
The class name of the ActionBean that this object describes.
getClassProperty(String, Class<T>) - Method in class net.sourceforge.stripes.config.BootstrapPropertyResolver
Attempts to find a class the user has specified in web.xml or by auto-discovery in packages listed in web.xml under Extension.Packages.
getClassPropertyList(String) - Method in class net.sourceforge.stripes.config.BootstrapPropertyResolver
Attempts to find all classes the user has specified in web.xml.
getClassPropertyList(Class<T>) - Method in class net.sourceforge.stripes.config.BootstrapPropertyResolver
Attempts to find classes by auto-discovery in packages listed in web.xml under Extension.Packages.
getClassPropertyList(String, Class<T>) - Method in class net.sourceforge.stripes.config.BootstrapPropertyResolver
Attempts to find all matching classes the user has specified in web.xml or by auto-discovery in packages listed in web.xml under Extension.Packages.
getCollection() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Returns the value set by InputOptionsCollectionTag.setCollection(Object).
getCollectionInstance() - Method in class net.sourceforge.stripes.validation.OneToManyTypeConverter
Instantiates and returns a Collection of a type that can be set on ActionBeans using this converter.
getCols() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Gets the HTML attribute of the same name.
getCommonPropertyType(ELContext, Object) - Method in class net.sourceforge.stripes.validation.expression.Jsp21ExpressionExecutor.StripesELResolver
Always returns Object.class.
getComponents() - Method in class net.sourceforge.stripes.controller.UrlBinding
Get the list of components that comprise this binding.
getComponents() - Method in class net.sourceforge.stripes.tag.layout.LayoutContext
Gets the Map of overridden components.
getConfiguration() - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Provides subclasses with access to the configuration object.
getConfiguration() - Method in class net.sourceforge.stripes.controller.DefaultActionBeanContextFactory
 
getConfiguration() - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Returns the Configuration object that was passed to the init() method.
getConfiguration() - Static method in class net.sourceforge.stripes.controller.StripesFilter
Returns the Configuration that is being used to process the current request.
getConfiguration() - Method in class net.sourceforge.stripes.exception.DefaultExceptionHandler
Provides subclasses with access to the configuration.
getConfiguration() - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Allows subclasses to access the stored configuration if needed.
getConfiguration() - Method in class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
 
getConfiguration() - Method in class net.sourceforge.stripes.tag.DefaultPopulationStrategy
Accessor for the configuration supplied when the population strategy is initialized.
getConfiguration() - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRendererFactory
 
getConfiguration() - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Provides subclasses with access to the configuration provided at initialization.
getConfiguration() - Method in class net.sourceforge.stripes.validation.DefaultValidationMetadataProvider
Get the Configuration object that was passed into DefaultValidationMetadataProvider.init(Configuration).
getContentLength() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getContentLength() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns -1 (unknown).
getContentLength() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Returns the content length if one was set on the response by calling setContentLength().
getContentType() - Method in class net.sourceforge.stripes.action.FileBean
Returns the content type of the file that the user selected and uploaded.
getContentType() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getContentType() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns null.
getContentType() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Gets the content type for the response.
getContext() - Method in interface net.sourceforge.stripes.action.ActionBean
Implementations must implement this method to return a reference to the context object provided to the ActionBean during the call to setContext(ActionBeanContext).
getContext() - Method in class net.sourceforge.stripes.controller.DefaultViewActionBean
 
getContext() - Method in class net.sourceforge.stripes.mock.MockRoundtrip
Get the ActionBean context to be used by this round trip
getContext(String) - Method in class net.sourceforge.stripes.mock.MockServletContext
If the url is within this servlet context, returns this.
getContextInstance(HttpServletRequest, HttpServletResponse) - Method in interface net.sourceforge.stripes.controller.ActionBeanContextFactory
Creates and returns a new instance of ActionBeanContext or a subclass.
getContextInstance(HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanContextFactory
Returns a new instance of the configured class, or ActionBeanContext if a class is not specified.
getContextPath() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getContextPath() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns the context path.
getContextPath() - Method in class net.sourceforge.stripes.mock.MockServletContext
Servlet 2.3 method.
getCookies() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getCookies() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns any cookies that are set on the request.
getCookies() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Gets the set of cookies stored in the response.
getCoords() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getCreationTime() - Method in class net.sourceforge.stripes.mock.MockHttpSession
Returns the time in milliseconds when the session was created.
getCssClass() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getCurrent(HttpServletRequest, boolean) - Static method in class net.sourceforge.stripes.controller.FlashScope
Gets the current flash scope into which items can be stored temporarily.
getCurrentError() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Called by the IndividualErrorTag to fetch the current error from the set being iterated.
getDateFormat() - Method in class net.sourceforge.stripes.format.DateFormatter
Gets the date format that will format the date.
getDateFormats() - Method in class net.sourceforge.stripes.validation.DateTypeConverter
Returns an array of DateFormat objects that will be used in sequence to try and parse the date String.
getDateHeader(String) - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getDateHeader(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the named header as a long.
getDefaultEvent() - Method in class net.sourceforge.stripes.tools.ActionBeanInfo
Gets the default event for this ActionBean, if there is one.
getDefaultHandler(Class<? extends ActionBean>) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Locates and returns the default handler method that should be invoked when no specific event is named.
getDefaultHandler(Class<? extends ActionBean>) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Returns the Method that is the default handler for events in the ActionBean class supplied.
getDefaultPolicy() - Method in class net.sourceforge.stripes.controller.BindingPolicyManager
Get the default policy.
getDefaultScope() - Method in class net.sourceforge.stripes.validation.ScopedLocalizableError
Get the default scope that was passed into the constructor.
getDefaultValue() - Method in class net.sourceforge.stripes.controller.UrlBindingParameter
Get the parameter's default value, which may be null.
getDefaultValue(Class<?>) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Returns an appropriate default value for the class supplied.
getDelegate() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getDestination() - Method in class net.sourceforge.stripes.mock.MockRoundtrip
Gets the URL to which Stripes was directed after invoking the ActionBean.
getDir() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getDisabled() - Method in class net.sourceforge.stripes.tag.InputTagSupport
 
getEffectiveMaxlength() - Method in class net.sourceforge.stripes.tag.InputTextTag
Gets the maxlength value that is in effect for this tag, as determined by checking InputTextTag.getMaxlength() and then the maxlength element of the Validate annotation on the associated ActionBean property.
getELResolver() - Method in class net.sourceforge.stripes.validation.expression.Jsp21ExpressionExecutor.StripesELContext
Returns the StripesELResovler.
getEnctype() - Method in class net.sourceforge.stripes.tag.FormTag
Gets the form encoding.
getEnum() - Method in class net.sourceforge.stripes.tag.InputOptionsEnumerationTag
Gets the enum class name set with setEnum().
getErrorCode() - Method in class net.sourceforge.stripes.action.ErrorResolution
Accessor for the HTTP status code.
getErrorCode() - Method in class net.sourceforge.stripes.controller.DynamicMappingFilter.ErrorTrappingResponseWrapper
Get the error code that was passed into sendError(int, ..)
getErrorMessage() - Method in class net.sourceforge.stripes.action.ErrorResolution
Accessor for the descriptive error message.
getErrorMessage(Locale, String) - Static method in class net.sourceforge.stripes.localization.LocalizationUtility
Looks up the specified key in the error message resource bundle.
getErrorMessage() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Gets the error message if one was set with setStatus() or sendError().
getErrorMessageBundle(Locale) - Method in class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
Looks for a bundle called StripesResources with the supplied locale if one is provided, or with the default locale if the locale provided is null.
getErrorMessageBundle(Locale) - Method in interface net.sourceforge.stripes.localization.LocalizationBundleFactory
Returns the ResourceBundle from which to draw error messages for the specified locale.
getEvaluator() - Method in class net.sourceforge.stripes.validation.expression.CommonsElExpressionExecutor
Attempts to create an expression evaluator by reflecting to find the implementation in the apache commons-el project.
getEvaluator() - Method in class net.sourceforge.stripes.validation.expression.ExpressionExecutorSupport
Must be implemented by subclasses to return an instance of ExpressionEvaluator that can be used to execute expressions.
getEvaluator() - Method in class net.sourceforge.stripes.validation.expression.Jsp20ExpressionExecutor
Attempts to get the PageContext object stashed away in the DispatcherHelper and use it to generate an ExpressionEvaluator.
getEvent() - Method in class net.sourceforge.stripes.tag.LinkTagSupport
Gets the (optional) event name that the link will trigger.
getEvent() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
The event name, if any to execute.
getEvent() - Method in class net.sourceforge.stripes.util.UrlBuilder
Get the name of the event to be executed by this URL.
getEventName() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Supplies the name of the event being handled.
getEventName(Class<? extends ActionBean>, ActionBeanContext) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Determines the name of the event fired by the front end.
getEventName(Class<? extends ActionBean>, ActionBeanContext) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Try various means to determine which event is to be executed on the current ActionBean.
getEventNameFromEventNameParam(Class<? extends ActionBean>, ActionBeanContext) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Looks to see if there is a single non-empty parameter value for the parameter name specified by StripesConstants.URL_KEY_EVENT_NAME.
getEventNameFromPath(Class<? extends ActionBean>, ActionBeanContext) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Looks to see if there is extra path information beyond simply the url binding of the bean.
getEventNameFromRequestAttribute(Class<? extends ActionBean>, ActionBeanContext) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Checks a special request attribute to get the event name.
getEventNameFromRequestParams(Class<? extends ActionBean>, ActionBeanContext) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Loops through the set of known events for the ActionBean to see if the event names are present as parameter names in the request.
getEvents() - Method in class net.sourceforge.stripes.tools.ActionBeanInfo
Gets a Map of event name to EventInfo, excluding the default event.
getExceptionHandler() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of ExceptionHandler that can be used by Stripes to handle any exceptions that arise as the result of processing a request.
getExceptionHandler() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of an ExceptionHandler.
getExecutor() - Static method in class net.sourceforge.stripes.validation.expression.ExpressionValidator
Gets the executor that will be used to run expression evaluation.
getExpression() - Method in exception net.sourceforge.stripes.util.bean.ParseException
Fetches the expression which caused the parsing failure.
getExpression(String) - Static method in class net.sourceforge.stripes.util.bean.PropertyExpression
Factory method for retrieving PropertyExpression objects for expression strings.
getExpression() - Method in class net.sourceforge.stripes.util.bean.PropertyExpressionEvaluation
Fetches the expression of which this is an evaluation.
getExpressionEvaluation() - Method in class net.sourceforge.stripes.util.bean.NodeEvaluation
Gets the PropertyExpressionEvaluation that this NodeEvaluation is a part of.
getExpressionFactory() - Method in class net.sourceforge.stripes.validation.expression.Jsp21ExpressionExecutor
Creates an ExpressionFactory using the JspApplicationContext.
getExpresssionNodeType() - Method in class net.sourceforge.stripes.util.bean.Node
Returns the Java type of this node in the expression.
getFeatureDescriptors(ELContext, Object) - Method in class net.sourceforge.stripes.validation.expression.Jsp21ExpressionExecutor.StripesELResolver
Always returns null.
getField() - Method in class net.sourceforge.stripes.tag.ErrorsTag
Gets the value set with setField().
getField(Class<?>, String) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Looks for an instance (i.e.
getFieldErrors() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Access for the field errors that occurred on the form input this tag represents
getFieldName() - Method in class net.sourceforge.stripes.validation.SimpleError
Provides subclasses access to the field name.
getFieldName() - Method in interface net.sourceforge.stripes.validation.ValidationError
Returns the name of the field in error, if one was supplied.
getFields(Class<?>) - Static method in class net.sourceforge.stripes.integration.spring.SpringHelper
Fetches the fields on a class that are annotated with SpringBean.
getFields() - Method in class net.sourceforge.stripes.tag.FieldMetadataTag
 
getFields(Class<?>) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Fetches all fields of all access types from the supplied class and super classes.
getFieldsPresentInfo(ActionBean) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
In a lot of cases (and specifically during wizards) the Stripes form field writes out a hidden field containing a set of field names.
getFieldValue() - Method in class net.sourceforge.stripes.validation.SimpleError
Provides subclasses with access to the value of the field that is in error.
getFieldValue() - Method in interface net.sourceforge.stripes.validation.ValidationError
Returns the value that is in error, if one was supplied.
getFileName() - Method in class net.sourceforge.stripes.action.FileBean
Returns the name of the file that the user selected and uploaded (this is not necessarily the name that the underlying file is now stored on the server using).
getFileParameterNames() - Method in class net.sourceforge.stripes.controller.multipart.CommonsMultipartWrapper
Fetches the names of all file parameters in the request.
getFileParameterNames() - Method in interface net.sourceforge.stripes.controller.multipart.MultipartWrapper
Fetches the names of all file parameters in the request.
getFileParameterNames() - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Returns the names of request parameters that represent files being uploaded by the user.
getFileParameterValue(String) - Method in class net.sourceforge.stripes.controller.multipart.CommonsMultipartWrapper
Responsible for constructing a FileBean object for the named file parameter.
getFileParameterValue(String) - Method in interface net.sourceforge.stripes.controller.multipart.MultipartWrapper
Responsible for constructing a FileBean object for the named file parameter.
getFileParameterValue(String) - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Returns a FileBean representing an uploaded file with the form field name = "name".
getFileUploadExceededExceptionPath(HttpServletRequest) - Method in class net.sourceforge.stripes.exception.DefaultExceptionHandler
Get the path to which the Resolution returned by DefaultExceptionHandler.handle(FileUploadLimitExceededException, HttpServletRequest, HttpServletResponse) should forward to report the error.
getFilterConfig() - Method in class net.sourceforge.stripes.config.BootstrapPropertyResolver
Returns a reference to the StripesFilter's FilterConfig object.
getFilterMethods(Class<? extends ActionBean>) - Method in class net.sourceforge.stripes.controller.BeforeAfterMethodInterceptor
Gets the Before/After methods for the ActionBean.
getFilterName() - Method in class net.sourceforge.stripes.mock.MockFilterConfig
Returns the name of the filter for which this is the config.
getFilters() - Method in class net.sourceforge.stripes.mock.MockServletContext
Provides access to the set of filters configured for this context.
getFindViewAttempts(String) - Method in class net.sourceforge.stripes.controller.NameBasedActionResolver
Returns the list of attempts to locate a default view for the urlBinding provided.
getFocus() - Method in class net.sourceforge.stripes.tag.FormTag
Gets the name of the field that should receive focus when the form is rendered.
getFor() - Method in class net.sourceforge.stripes.tag.InputLabelTag
Gets the HTML ID of the field for which this is a label.
getForm() - Method in class net.sourceforge.stripes.tag.FieldMetadataTag
 
getFormatPattern() - Method in class net.sourceforge.stripes.format.DateFormatter
Gets the named format string or date pattern to use to format the date.
getFormatPattern() - Method in class net.sourceforge.stripes.format.NumberFormatter
Gets the named format string or number format pattern to use to format the number.
getFormatPattern() - Method in class net.sourceforge.stripes.tag.FormatTag
Get the format pattern
getFormatPattern() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Returns the value set with setFormatPattern()
getFormatStrings() - Method in class net.sourceforge.stripes.validation.DateTypeConverter
Returns an array of format strings that will be used, in order, to try and parse the date.
getFormatter(Class<?>, Locale, String, String) - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Check to see if the there is a Formatter for the specified clazz.
getFormatter(Class<?>, Locale, String, String) - Method in interface net.sourceforge.stripes.format.FormatterFactory
Returns a configured formatter that meets the criteria specified.
getFormatter(Object) - Method in class net.sourceforge.stripes.util.UrlBuilder
Tries to get a formatter for the given value using the FormatterFactory.
getFormatterFactory() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of FormatterFactory that is responsible for creating Formatter objects for converting rich types into Strings for display on pages.
getFormatterFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of a FormatterFactory.
getFormatters() - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Gets the (rather confusing) Map of Formatter objects.
getFormatType() - Method in class net.sourceforge.stripes.format.DateFormatter
Gets the format type to be used to render dates as Strings.
getFormatType() - Method in class net.sourceforge.stripes.format.NumberFormatter
Gets the format type to be used to render numbers as Strings.
getFormatType() - Method in class net.sourceforge.stripes.tag.FormatTag
Get the format type
getFormatType() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Returns the value set with setFormatAs()
getFormFieldBundle(Locale) - Method in class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
Looks for a bundle called StripesResources with the supplied locale if one is provided, or with the default locale if the locale provided is null.
getFormFieldBundle(Locale) - Method in interface net.sourceforge.stripes.localization.LocalizationBundleFactory
Returns the ResourceBundle from which to draw the names of form fields for the specified locale.
getFormId() - Method in class net.sourceforge.stripes.tag.FieldMetadataTag.Var
 
getForwardUrl() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the URL that was forwarded to, if a forward was processed.
getForwardUrl() - Method in class net.sourceforge.stripes.mock.MockRoundtrip
If the request resulted in a forward, returns the URL that was forwarded to.
getFunctionMapper() - Method in class net.sourceforge.stripes.validation.expression.Jsp21ExpressionExecutor.StripesELContext
Returns a no-op implementation of FunctionMapper.
getGroup() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Gets the property name set with setGroup().
getHandledEvent(Method) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Returns the name of the event to which a given handler method responds.
getHandledEvent(Method) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Responsible for determining the name of the event handled by this method, if indeed it handles one at all.
getHandledEvent(Method) - Method in class net.sourceforge.stripes.controller.NameBasedActionResolver
First checks with the super class to see if an annotated event name is present, and if not then returns the name of the handler method itself.
getHandler(Class<? extends ActionBean>, String) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Resolves the Method which handles the named event.
getHandler(Class<? extends ActionBean>, String) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Uses the Maps constructed earlier to locate the Method which can handle the event.
getHandler() - Method in class net.sourceforge.stripes.controller.ExecutionContext
Retrieves the handler Method that is targeted by the current request.
getHeader(String) - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getHeader(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns any header as a String if it exists.
getHeaderMap() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Provides access to all headers that were set.
getHeaderNames() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getHeaderNames() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns an enumeration containing all the names of headers supplied.
getHeaders(String) - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getHeaders(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns an enumeration with single value of the named header, or an empty enum if no value.
getHref() - Method in class net.sourceforge.stripes.tag.LinkTag
Pass through to LinkTagSupport.getUrl().
getHreflang() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getId() - Method in class net.sourceforge.stripes.mock.MockHttpSession
Returns an ID that was randomly generated when the session was created.
getId() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getId() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
Alias for getVar() so that the JSTL and jsp:useBean style are allowed.
getImplementedInterfaces(Class<?>) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Returns a set of all interfaces implemented by class supplied.
getImplementingClass(Class<?>) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Looks up the default implementing type for the supplied interface.
getIncludedUrls() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the list (potentially empty) or URLs that were included during the request.
getInitParameter(String) - Method in class net.sourceforge.stripes.mock.MockBaseConfig
Gets the named init parameter if it exists, or null if it doesn't.
getInitParameter(String) - Method in class net.sourceforge.stripes.mock.MockServletContext
Gets the value of an init parameter with the specified name, if one exists.
getInitParameterNames() - Method in class net.sourceforge.stripes.mock.MockBaseConfig
Gets an enumeration of all the init parameter names present.
getInitParameterNames() - Method in class net.sourceforge.stripes.mock.MockServletContext
Returns an enumeration of all the initialization parameters in the context.
getInputStream() - Method in class net.sourceforge.stripes.action.FileBean
Gets an input stream to read from the file uploaded
getInputStream() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getInputStream() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns null.
getInstance(Class<?>) - Static method in class net.sourceforge.stripes.controller.BindingPolicyManager
Get the policy manager for the given class.
getInstance() - Static method in class net.sourceforge.stripes.controller.UrlBindingFactory
Get the singleton instance.
getInstance(Class<? extends Formatter<?>>, String, String, Locale) - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Gets an instance of the Formatter class specified.
getInstance(Class<?>) - Static method in class net.sourceforge.stripes.util.Log
Get a Log instance to perform logging within the Class specified.
getInstance(Class<? extends TypeConverter>, Locale) - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Gets an instance of the TypeConverter class specified.
getInstance(Class<? extends TypeConverter>, Locale) - Method in interface net.sourceforge.stripes.validation.TypeConverterFactory
Gets an instance of the TypeConverter class specified.
getInstanceConfiguration() - Method in class net.sourceforge.stripes.controller.StripesFilter
Returns the configuration for this instance of the StripesFilter for any class that has a reference to the filter.
getInterceptors(LifecycleStage) - Method in interface net.sourceforge.stripes.config.Configuration
Fetches the interceptors that should be executed around the lifecycle stage applied.
getInterceptors(LifecycleStage) - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns a list of interceptors that should be executed around the lifecycle stage indicated.
getInterfaceInstance(Class<T>) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Attempts to determine an implementing class for the interface provided and instantiate it using a default constructor.
getIntHeader(String) - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getIntHeader(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the named header as an int.
getKey() - Method in class net.sourceforge.stripes.tag.MessagesTag
Gets the key that will be used to scope search for messages to display.
getKey(NodeEvaluation) - Method in class net.sourceforge.stripes.util.bean.MapPropertyAccessor
Attempts to convert the key to from the expression node to the correct type as determined by reflection (using generics to find the Map key type).
getKey() - Method in class net.sourceforge.stripes.validation.ScopedLocalizableError
Get the key that was passed into the constructor.
getKeyMaterialFromConfig() - Static method in class net.sourceforge.stripes.util.CryptoUtil
Attempts to load material from which to manufacture a secret key from the Stripes Configuration.
getKeyType() - Method in class net.sourceforge.stripes.util.bean.NodeEvaluation
Gets the class object which represents the key type determined during evaluation of the expression against the provided bean.
getLabel() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Gets the property name set with setLabel().
getLabel() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Returns the value set with setLabel().
getLang() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getLastAccessedTime() - Method in class net.sourceforge.stripes.mock.MockHttpSession
Always returns the current time.
getLifecycleStage() - Method in class net.sourceforge.stripes.controller.ExecutionContext
Gets the current LifecycleStage being processed.
getLocalAddr() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getLocalAddr() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns 127.0.0.1).
getLocale() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Gets the Locale that is being used to service the current request.
getLocale() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getLocale() - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Provides access to the Locale being used to process the request.
getLocale() - Method in class net.sourceforge.stripes.format.DateFormatter
Gets the locale that output String should be in.
getLocale() - Method in class net.sourceforge.stripes.format.NumberFormatter
Gets the locale that output String should be in.
getLocale() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns the preferred locale.
getLocale() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Gets the response locale.
getLocale() - Method in class net.sourceforge.stripes.validation.DateTypeConverter
 
getLocale() - Method in class net.sourceforge.stripes.validation.NumberTypeConverterSupport
Returns the Locale set on the object using setLocale().
getLocalePicker() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of LocalePicker that is responsible for choosing the Locale for each request that enters the system.
getLocalePicker() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of a LocalePicker.
getLocales() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getLocales() - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Returns a single element enumeration containing the selected Locale for this request.
getLocales() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns an enumeration of requested locales.
getLocalizationBundleFactory() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of LocalizationBundleFactory that is responsible for looking up resource bundles for the varying localization needs of a web application.
getLocalizationBundleFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of a LocalizationBundleFactory.
getLocalizedFieldName(String, String, Class<? extends ActionBean>, Locale) - Static method in class net.sourceforge.stripes.localization.LocalizationUtility
Fetches the localized name for a form field if one exists in the form field resource bundle.
getLocalizedFieldName() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Fetches the localized name for this field if one exists in the resource bundle.
getLocalizedFieldName(String) - Method in class net.sourceforge.stripes.tag.InputTagSupport
Attempts to fetch a "field name" resource from the localization bundle.
getLocalName() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getLocalName() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns the same value as getServerName().
getLocalPort() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getLocalPort() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns the same value as getServerPort().
getLogger() - Method in class net.sourceforge.stripes.util.Log4JLogger
Return the native Logger instance we are using.
getMajorVersion() - Method in class net.sourceforge.stripes.mock.MockServletContext
Always returns 2.
getMap() - Method in class net.sourceforge.stripes.tag.InputOptionsMapTag
Returns the Map that was passed in via setMap().
getMatches() - Method in exception net.sourceforge.stripes.exception.UrlBindingConflictException
Get all the URL bindings on existing ActionBeans that match the path
getMaximum() - Method in exception net.sourceforge.stripes.controller.FileUploadLimitExceededException
Gets the limit in bytes for HTTP POSTs.
getMaxInactiveInterval() - Method in class net.sourceforge.stripes.mock.MockHttpSession
Always returns Integer.MAX_VALUE.
getMaxlength() - Method in class net.sourceforge.stripes.tag.InputTextTag
Gets the HTML attribute of the same name.
getMessage(Locale) - Method in interface net.sourceforge.stripes.action.Message
Provides a message that can be displayed to the user.
getMessage(Locale) - Method in class net.sourceforge.stripes.action.SimpleMessage
Uses the String message passed in as the message template and combines it with any replacement parameters provided to construct a message for display to the user.
getMessage() - Method in class net.sourceforge.stripes.action.SimpleMessage
Returns the exact message that was supplied in the constructor.
getMessage(Class<? extends ActionBean>, String, Collection<String>) - Static method in exception net.sourceforge.stripes.exception.UrlBindingConflictException
Generate the message to pass to the superclass constructor
getMessage(Locale) - Method in class net.sourceforge.stripes.validation.SimpleError
Looks up the field name in the resource bundle (if it exists) so that it can be used in the message, and then defers to it's super class to combine the message template with the replacement parameters provided.
getMessageKey() - Method in class net.sourceforge.stripes.validation.LocalizableError
 
getMessages() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Returns the default set of non-error messages associated with the current request.
getMessages(String) - Method in class net.sourceforge.stripes.action.ActionBeanContext
Returns the set of non-error messages associated with the current request under the specified key.
getMessages() - Method in class net.sourceforge.stripes.tag.MessagesTag
Gets the list of messages that will be displayed by the tag.
getMessageTemplate(Locale) - Method in class net.sourceforge.stripes.action.LocalizableMessage
Method responsible for using the information supplied to the message object to find a message template.
getMessageTemplate(Locale) - Method in class net.sourceforge.stripes.action.SimpleMessage
Simply returns the message passed in at Construction time.
getMessageTemplate(Locale) - Method in class net.sourceforge.stripes.validation.LocalizableError
Method responsible for using the information supplied to the error object to find a message template.
getMessageTemplate(Locale) - Method in class net.sourceforge.stripes.validation.ScopedLocalizableError
Overrides getMessageTemplate to perform a scoped search for a message template as defined in the class level javadoc.
getMethod() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getMethod() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the method used by the request.
getMethod() - Method in class net.sourceforge.stripes.tag.FormTag
Gets the HTTP method to use when the form is submitted.
getMethodName() - Method in class net.sourceforge.stripes.tools.EventInfo
The name of the method in the ActionBean that handles the event.
getMethods(Class<?>) - Static method in class net.sourceforge.stripes.integration.spring.SpringHelper
Fetches the methods on a class that are annotated with SpringBean.
getMethods(Class<?>) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Fetches all methods of all access types from the supplied class and super classes.
getMimeType(String) - Method in class net.sourceforge.stripes.mock.MockServletContext
Always returns null (i.e.
getMinorVersion() - Method in class net.sourceforge.stripes.mock.MockServletContext
Always returns 4.
getMockRequest(ServletRequest) - Method in class net.sourceforge.stripes.mock.MockRequestDispatcher
Locates the MockHttpServletRequest in case it is wrapped.
getMultipartWrapperFactory() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of MultipartWrapperFactory that can be used by Stripes to construct MultipartWrapper instances for dealing with multipart requests (those containing file uploads).
getMultipartWrapperFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of MultipartWrapperFactory that can be used by Stripes to construct MultipartWrapper instances for dealing with multipart requests (those containing file uploads).
getMultiple() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Gets the HTML attribute "multiple".
getName() - Method in class net.sourceforge.stripes.controller.ParameterName
Always returns the parameter name as passed in to the constructor.
getName() - Method in class net.sourceforge.stripes.controller.UrlBindingParameter
Get the parameter name.
getName() - Method in class net.sourceforge.stripes.tag.FormTag
 
getName() - Method in class net.sourceforge.stripes.tag.InputTagSupport
 
getName() - Method in class net.sourceforge.stripes.tag.layout.LayoutComponentTag
Gets the name of the component.
getName() - Method in class net.sourceforge.stripes.tag.layout.LayoutRenderTag
Gets the name of the layout to be used.
getName() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getName() - Method in class net.sourceforge.stripes.tag.ParamTag
Gets the name of the parameter(s) that will be added to the URL.
getName() - Method in class net.sourceforge.stripes.tools.EventInfo
The name of the event (possibly null in the case of default events).
getNamedDispatcher(String) - Method in class net.sourceforge.stripes.mock.MockServletContext
Returns a MockRequestDispatcher for the named servlet provided.
getNext() - Method in class net.sourceforge.stripes.util.bean.Node
Gets the next node in the expression.
getNext() - Method in class net.sourceforge.stripes.util.bean.NodeEvaluation
Gets the next NodeEvaluation in the chain, or null if this is the terminal node.
getNode() - Method in class net.sourceforge.stripes.util.bean.NodeEvaluation
Gets the Node that is represented in the evaluation by this NodeEvaluation.
getNumberFormats() - Method in class net.sourceforge.stripes.validation.BigDecimalTypeConverter
Uses the parent implementation to fetch number formats, but then downcasts it to a decimal format and ensures that a BigDecimal is parsed instead of a Long or Double.
getNumberFormats() - Method in class net.sourceforge.stripes.validation.BigIntegerTypeConverter
Uses the parent implementation to fetch a number format, but then downcasts it to a decimal format and ensures that a BigDecimal is parsed instead of a Long or Double.
getNumberFormats() - Method in class net.sourceforge.stripes.validation.ByteTypeConverter
Overridden to return integer instances instead.
getNumberFormats() - Method in class net.sourceforge.stripes.validation.IntegerTypeConverter
Overridden to return integer instances instead.
getNumberFormats() - Method in class net.sourceforge.stripes.validation.LongTypeConverter
Overridden to return integer instances instead.
getNumberFormats() - Method in class net.sourceforge.stripes.validation.NumberTypeConverterSupport
Fetches one or more NumberFormat instances that can be used to parse numbers for the current locale.
getNumberFormats() - Method in class net.sourceforge.stripes.validation.PercentageTypeConverter
Returns a single percentage instance of NumberFormat.
getNumberFormats() - Method in class net.sourceforge.stripes.validation.ShortTypeConverter
Overridden to return integer instances instead.
getOnblur() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnchange() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnclick() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOndblclick() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnfocus() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnkeydown() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnkeypress() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnkeyup() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnmousedown() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnmousemove() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnmouseout() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnmouseover() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnmouseup() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnreset() - Method in class net.sourceforge.stripes.tag.FormTag
 
getOnselect() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getOnsubmit() - Method in class net.sourceforge.stripes.tag.FormTag
 
getOption(String) - Method in class net.sourceforge.stripes.tools.SiteStructureTool
For the named option to apt, returns the value of the option if it was supplied, or null if the option was not supplied.
getOutputBytes() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Gets the output that was written to the output stream, as a byte[].
getOutputBytes() - Method in class net.sourceforge.stripes.mock.MockRoundtrip
Gets, as bytes, any data that was written to the output stream associated with the request.
getOutputStream() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Returns a reference to a ServletOutputStream to be used for output.
getOutputString() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Gets the output that was written to the output stream, as a character String.
getOutputString() - Method in class net.sourceforge.stripes.mock.MockRoundtrip
Gets, as a String, any data that was written to the output stream associated with the request.
getOverrideValueOrValues() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Gets the value for this tag based on the current population strategy.
getPackagePath(String) - Method in class net.sourceforge.stripes.util.ResolverUtil
Converts a Java package name to a path that can be looked up with a call to ClassLoader.getResources(String).
getPageContext() - Static method in class net.sourceforge.stripes.controller.DispatcherHelper
Used by the validation subsystem to access a page context that can be used to create an expression evaluator for use in the expression validation code.
getPageContext() - Method in class net.sourceforge.stripes.tag.ParamTag
 
getPageContext() - Method in class net.sourceforge.stripes.tag.StripesTagSupport
Retrieves the pageContext handed to the tag by the container.
getParameter(String) - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getParameter(String) - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Retrieves the first value of the specified parameter from the request.
getParameter(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the first value of the named parameter or null if a value does not exist.
getParameterMap() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getParameterMap() - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
If the request is a clean URL, then extract the parameters from the URI and merge with the parameters from the query string and/or request body.
getParameterMap() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Provides access to the parameter map.
getParameterNames() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getParameterNames() - Method in class net.sourceforge.stripes.controller.multipart.CommonsMultipartWrapper
Fetches the names of all non-file parameters in the request.
getParameterNames() - Method in interface net.sourceforge.stripes.controller.multipart.MultipartWrapper
Fetches the names of all non-file parameters in the request.
getParameterNames() - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Fetches just the names of regular parameters and does not include file upload parameters.
getParameterNames() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets an enumeration containing all the parameter names present.
getParameters() - Method in class net.sourceforge.stripes.action.OnwardResolution
Provides access to the Map of parameters that has been accumulated so far for this resolution.
getParameters(ActionBean) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Converts the map of parameters in the request into a Map of ParameterName to String[].
getParameters() - Method in class net.sourceforge.stripes.controller.UrlBinding
Get the list of parameters for this binding.
getParameters() - Method in class net.sourceforge.stripes.tag.layout.LayoutContext
Gets the Map of parameters.
getParameters() - Method in class net.sourceforge.stripes.tag.LinkTagSupport
Retrieves the parameter values set on the tag.
getParameterSeparator() - Method in class net.sourceforge.stripes.util.UrlBuilder
Returns the string that will be used to separate parameters in the query string.
getParameterValues(String) - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getParameterValues(String) - Method in class net.sourceforge.stripes.controller.multipart.CommonsMultipartWrapper
Fetches all values of a specific parameter in the request.
getParameterValues(String) - Method in interface net.sourceforge.stripes.controller.multipart.MultipartWrapper
Fetches all values of a specific parameter in the request.
getParameterValues(String) - Method in class net.sourceforge.stripes.controller.StripesRequestWrapper
Returns all values sent in the request for a given parameter name.
getParameterValues(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns an array of all values for a parameter, or null if the parameter does not exist.
getParent() - Method in class net.sourceforge.stripes.tag.ParamTag
Required spec method to allow others to access the parent of the tag.
getParent() - Method in class net.sourceforge.stripes.tag.StripesTagSupport
From the Tag interface - allows fetching the parent tag on the JSP.
getParentFormTag() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Locates the enclosing stripes form tag.
getParentTag(Class<T>) - Method in class net.sourceforge.stripes.tag.StripesTagSupport
Locates the enclosing tag of the type supplied.
getPath() - Method in class net.sourceforge.stripes.action.OnwardResolution
Accessor for the path that the user should be sent to.
getPath() - Method in class net.sourceforge.stripes.controller.UrlBinding
Get the path for this binding.
getPath() - Method in exception net.sourceforge.stripes.exception.UrlBindingConflictException
Get the path that failed to map to a single ActionBean
getPathInfo() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getPathInfo() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns the path info.
getPathMap() - Method in class net.sourceforge.stripes.controller.UrlBindingFactory
Get all the ActionBeans classes that have been found.
getPathTranslated() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getPathTranslated() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns the same as getPathInfo().
getPopulationStrategy() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of a PopulationStrategy that determines from where a tag's value should be repopulated.
getPopulationStrategy() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of a PopulationsStrategy.
getPosted() - Method in exception net.sourceforge.stripes.controller.FileUploadLimitExceededException
The size in bytes of the HTTP POST.
getPreferredBaseUrl() - Method in class net.sourceforge.stripes.tag.LinkTagSupport
Returns the base URL that should be used for building the link.
getPreProcessPattern() - Method in class net.sourceforge.stripes.validation.DateTypeConverter
Returns the regular expression pattern used in the pre-process method.
getPrevious(HttpServletRequest) - Static method in class net.sourceforge.stripes.controller.FlashScope
Fetch the flash scope that was populated during the previous request, if one exists.
getPrevious() - Method in class net.sourceforge.stripes.util.bean.Node
Gets the previous node in the expression.
getPrevious() - Method in class net.sourceforge.stripes.util.bean.NodeEvaluation
Gets the previous NodeEvaluation in the chain, or null if this is the first node.
getProcessorFor(Set<AnnotationTypeDeclaration>, AnnotationProcessorEnvironment) - Method in class net.sourceforge.stripes.tools.SiteStructureTool
AnnotationProcessorFactory interface method that returns the SiteStructure annotation processor.
getProperty(String) - Method in class net.sourceforge.stripes.config.BootstrapPropertyResolver
Fetches a configuration property in the manner described in the class level javadoc for this class.
getProperty() - Method in class net.sourceforge.stripes.validation.ValidationMetadata
Returns the name of the property this validation metadata represents.
getPropertyAccessor() - Method in enum net.sourceforge.stripes.util.bean.NodeType
Returns the PropertyAccessor instance that should be used to access properties of this type.
getPropertyDescriptor(Class<?>, String) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Fetches the property descriptor for the named property of the supplied class.
getPropertyDescriptors() - Method in class net.sourceforge.stripes.tag.HtmlTagSupportBeanInfo
Generates a simple set of PropertyDescriptors for the HtmlTagSupport class.
getPropertyDescriptors(Class<?>) - Static method in class net.sourceforge.stripes.util.ReflectUtil
Get the PropertyDescriptors for a bean class.
getPropertyType(String, Object) - Static method in class net.sourceforge.stripes.util.bean.BeanUtil
Attempts to determine the type of the property specified by the property expression in the context of the supplied bean.
getPropertyValue(String, Object) - Static method in class net.sourceforge.stripes.util.bean.BeanUtil
Attempts to fetch the property specified by the property expression in the context of the supplied bean.
getProtocol() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getProtocol() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the protocol for the request.
getQueryString() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getQueryString() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns the query string set on the request.
getReader() - Method in class net.sourceforge.stripes.action.FileBean
Gets a reader to read characters from the uploaded file.
getReader(String) - Method in class net.sourceforge.stripes.action.FileBean
Gets a reader to read characters from the uploaded file using the given charset.
getReader() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getReader() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns null.
getReadonly() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Gets the HTML attribute of the same name.
getRealLog() - Method in class net.sourceforge.stripes.util.Log
 
getRealPath(String) - Method in class net.sourceforge.stripes.controller.FlashRequest
Deprecated. 
getRealPath(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns the path passed in without any alteration.
getRealPath(String) - Method in class net.sourceforge.stripes.mock.MockServletContext
Always returns null as this is standard behaviour for WAR resources.
getRedirectUrl() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
If a call was made to sendRedirect() this method will return the URL that was supplied.
getRedirectUrl() - Method in class net.sourceforge.stripes.mock.MockRoundtrip
If the request resulted in a redirect, returns the URL that was redirected to.
getRegisteredFields() - Method in class net.sourceforge.stripes.tag.FormTag
Gets the set of all field names for which fields have been referred within the form up until the point of calling this method.
getRel() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getRemoteAddr() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getRemoteAddr() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Aways returns "127.0.0.1".
getRemoteHost() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getRemoteHost() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns "localhost".
getRemotePort() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getRemotePort() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns 1088 (and yes, that was picked arbitrarily).
getRemoteUser() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getRemoteUser() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns the name from the user principal if one exists, otherwise null.
getReplacementParameters() - Method in class net.sourceforge.stripes.action.SimpleMessage
Allows subclasses to access the replacement parameters for this message.
getRepopulate() - Method in class net.sourceforge.stripes.tag.InputPasswordTag
Returns true if the tag will repopulate values, false otherwise.
getRequest() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Retrieves the HttpServletRequest object that is associated with the current request.
getRequest() - Method in class net.sourceforge.stripes.mock.MockRoundtrip
Get the servlet request object to be used by this round trip
getRequestDispatcher(String) - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getRequestDispatcher(String) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns an instance of MockRequestDispatcher that just records what URLs are forwarded to or included.
getRequestDispatcher(String) - Method in class net.sourceforge.stripes.mock.MockServletContext
Returns a MockRequestDispatcher for the url provided.
getRequestedPath(HttpServletRequest) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Deprecated. Use HttpUtil.getRequestedPath(HttpServletRequest) instead.
getRequestedPath(HttpServletRequest) - Static method in class net.sourceforge.stripes.util.HttpUtil
Get the path from the given request.
getRequestedServletPath(HttpServletRequest) - Static method in class net.sourceforge.stripes.util.HttpUtil
Get the servlet path of the current request.
getRequestedSessionId() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getRequestedSessionId() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns the ID of the session if one is attached to this request.
getRequestURI(HttpServletRequest) - Method in class net.sourceforge.stripes.controller.DynamicMappingFilter
Deprecated. Use HttpUtil.getRequestedPath(HttpServletRequest) instead.
getRequestURI() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getRequestURI() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns the request URI as defined by the servlet spec.
getRequestURL() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getRequestURL() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns (an attempt at) a reconstructed URL based on it's constituent parts.
getResolution() - Method in class net.sourceforge.stripes.controller.ExecutionContext
Gets the Resolution that will be executed at the end of the execution.
getResolutions() - Method in class net.sourceforge.stripes.tools.EventInfo
The set of all possible resolutions for the event.
getResource(String) - Method in class net.sourceforge.stripes.mock.MockServletContext
Uses the current classloader to fetch the resource if it can.
getResource(ResourceBundle, String, String) - Method in class net.sourceforge.stripes.tag.ErrorsTag
Utility method that is used to lookup the resources used for the errors header, footer, and the strings that go before and after each error.
getResourceAsStream(String) - Method in class net.sourceforge.stripes.mock.MockServletContext
Uses the current classloader to fetch the resource if it can.
getResourcePaths(String) - Method in class net.sourceforge.stripes.mock.MockServletContext
Always returns null (i.e.
getResourceString(String) - Method in class net.sourceforge.stripes.validation.DateTypeConverter
Convenience method to fetch a property from the resource bundle.
getResponse() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Retrieves the HttpServletResponse that is associated with the current request.
getResponse() - Method in class net.sourceforge.stripes.mock.MockRoundtrip
Get the servlet response object to be used by this round trip
getRev() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getRootNode() - Method in class net.sourceforge.stripes.util.bean.PropertyExpression
Fetches the root or first node in this expression.
getRootNode() - Method in class net.sourceforge.stripes.util.bean.PropertyExpressionEvaluation
Fetches the root (first) node in the evaluation, which can be used to traverse through the nodes in series.
getRootVariableName() - Method in class net.sourceforge.stripes.ajax.JavaScriptBuilder
Returns the name used to declare the root variable to which the built JavaScript object is assigned.
getRows() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Gets the HTML attribute of the same name.
getScalarAsString(Object) - Method in class net.sourceforge.stripes.ajax.JavaScriptBuilder
Fetches the value of a scalar type as a String.
getScalarType() - Method in class net.sourceforge.stripes.util.bean.PropertyExpressionEvaluation
Returns a scalar type appropriate to the expression evaluation.
getScheme() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getScheme() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Always returns the same as getProtocol.
getScope() - Method in class net.sourceforge.stripes.tag.UrlTag
Gets the name of scope to store the scoped variable specified by 'var' in.
getScope() - Method in class net.sourceforge.stripes.tag.VarTagSupport
Get the scope in which the value will be stored
getSecretKey() - Static method in class net.sourceforge.stripes.util.CryptoUtil
Returns the secret key to be used to encrypt and decrypt values.
getSelected() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Returns the value set with setSelected().
getSelectedValueOrValues() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Returns the scalar value or Array or Collection of values that are to be selected in the select tag.
getSemaphore() - Method in class net.sourceforge.stripes.controller.FlashScope
Get the semaphore that is used to synchronize the calls to FlashScope.completeRequest() and FlashScope.beginRequest(HttpServletRequest) made by StripesFilter.
getServerInfo() - Method in class net.sourceforge.stripes.mock.MockServletContext
Returns a version string identifying the Mock implementation.
getServerName() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getServerName() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the server name.
getServerPort() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getServerPort() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns the server port.
getServlet(String) - Method in class net.sourceforge.stripes.mock.MockServletContext
Deprecated method always returns null.
getServletContext() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Retrieves the ServletContext object that is associated with the context in which the current request is being processed.
getServletContext() - Method in interface net.sourceforge.stripes.config.Configuration
Retrieves the ServletContext for the context within which the Stripes application is executing.
getServletContext() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Retrieves the ServletContext for the context within which the Stripes application is executing.
getServletContext() - Method in class net.sourceforge.stripes.mock.MockBaseConfig
Gets the ServletContext in whiich the filter is running.
getServletContext() - Method in class net.sourceforge.stripes.mock.MockHttpSession
Provides access to the servlet context within which the session exists.
getServletContextName() - Method in class net.sourceforge.stripes.mock.MockServletContext
Returns the name of the mock context.
getServletName() - Method in class net.sourceforge.stripes.mock.MockServletConfig
Returns the name of the servlet for which this is the config.
getServletNames() - Method in class net.sourceforge.stripes.mock.MockServletContext
Deprecated method always returns an empty enumeration.
getServletPath() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getServletPath() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the part of the path which matched the servlet.
getServlets() - Method in class net.sourceforge.stripes.mock.MockServletContext
Deprecated method always returns an empty enumeration.
getSession(boolean) - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getSession() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getSession(boolean) - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the session object attached to this request.
getSession() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Gets the session object attached to this request.
getSessionContext() - Method in class net.sourceforge.stripes.mock.MockHttpSession
Deprecated method always returns null.
getShape() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getSingleItemTypeConverter(Class) - Method in class net.sourceforge.stripes.validation.OneToManyTypeConverter
Fetches an instance of TypeConverter that can be used to convert the individual items split out of the input String.
getSingleOverrideValue() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Returns a single value for the the value of this field.
getSize() - Method in class net.sourceforge.stripes.action.FileBean
Gets the size of the file that was uploaded.
getSize() - Method in class net.sourceforge.stripes.tag.InputTagSupport
 
getSort() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Gets the comma separated list of properties by which the collection is sorted.
getSource() - Method in class net.sourceforge.stripes.util.bean.PropertyExpression
Fetches the original 'source' of the expression - the String value that was parsed to create the PropertyExpression object.
getSourcePage() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Returns the context-relative path to the page from which the user submitted they current request.
getSourcePageResolution() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Returns a resolution that can be used to return the user to the page from which they submitted they current request.
getSplitRegex() - Method in class net.sourceforge.stripes.validation.OneToManyTypeConverter
Returns the String form of a regular expression that identifies the separator Strings in the input String.
getSrc() - Method in class net.sourceforge.stripes.tag.InputImageTag
 
getStatus() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Gets the status (or error) code if one was set.
getString() - Method in class net.sourceforge.stripes.mock.MockServletOutputStream
Returns, as a character string, the output that was written to the output stream.
getStringValue() - Method in class net.sourceforge.stripes.util.bean.Node
Returns the original String value of this expression node.
getStrippedName() - Method in class net.sourceforge.stripes.controller.ParameterName
Returns the name with all indexing and mapping components stripped.
getStyle() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getSuffix() - Method in class net.sourceforge.stripes.controller.UrlBinding
If this binding includes one or more parameters and the last component is a String, then this method will return that last component.
getTabindex() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getTag() - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRenderer
Returns the tag which is being rendered.
getTagErrorRenderer(InputTagSupport) - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRendererFactory
Returns a new instance of the configured renderer that is ready for use.
getTagErrorRenderer(InputTagSupport) - Method in interface net.sourceforge.stripes.tag.TagErrorRendererFactory
Returns a new instance of a TagErrorRenderer that is utilized by the supplied tag.
getTagErrorRendererFactory() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of a tag error renderer factory for building custom error renderers for form input tags that have field errors.
getTagErrorRendererFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of a TagErrorRendererFactory.
getTagStack() - Method in class net.sourceforge.stripes.tag.StripesTagSupport
Fetches a tag stack that is stored in the request.
getTarget() - Method in class net.sourceforge.stripes.tag.FormTag
 
getTarget() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getTargetClass() - Method in exception net.sourceforge.stripes.exception.UrlBindingConflictException
Get the ActionBean class for which a URL was being generated when this exception was thrown.
getTimeout() - Method in class net.sourceforge.stripes.controller.FlashScope
Returns the timeout in seconds after which the flash scope will be discarded.
getTitle() - Method in class net.sourceforge.stripes.tag.HtmlTagSupport
 
getType() - Method in class net.sourceforge.stripes.tag.LinkTag
 
getType() - Method in class net.sourceforge.stripes.util.bean.NodeEvaluation
Gets the type of the node (bean property, list item etc.).
getType() - Method in class net.sourceforge.stripes.util.bean.PropertyExpressionEvaluation
Fetches the type of value that can be get/set with this expression evaluation.
getType(ELContext, Object, Object) - Method in class net.sourceforge.stripes.validation.expression.Jsp21ExpressionExecutor.StripesELResolver
Does nothing.
getTypeConverter(Class, Locale) - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Gets the applicable type converter for the class passed in.
getTypeConverter(Class, Locale) - Method in interface net.sourceforge.stripes.validation.TypeConverterFactory
Gets the applicable type converter for the class passed in.
getTypeConverterFactory() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of TypeConverterFactory that is responsible for providing lookups and instances of TypeConverters for the validation system.
getTypeConverterFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of DefaultTypeConverterFactory unless a subclass has overridden the default..
getTypeConverters() - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Gets the (rather confusing) Map of TypeConverter objects.
getTypedValue() - Method in class net.sourceforge.stripes.util.bean.Node
Returns the typed value for this node as determined when parsing the expression
getTypeVariableValue(NodeEvaluation, TypeVariable<?>) - Method in class net.sourceforge.stripes.util.bean.PropertyExpressionEvaluation
Scans backwards in the expression for the last node which contained a JavaBean type and attempts to use the type arguments to that class to find a match for the TypeParameter provided.
getTypeViaInstances(NodeEvaluation) - Method in class net.sourceforge.stripes.util.bean.PropertyExpressionEvaluation
Determines the type of the supplied node and sets appropriate information on the node.
getUrl() - Method in class net.sourceforge.stripes.action.OnwardResolution
Deprecated. As of Stripes 1.5, this method has been replaced by OnwardResolution.getUrl(Locale).
getUrl(Locale) - Method in class net.sourceforge.stripes.action.OnwardResolution
Constructs the URL for the resolution by taking the path and appending any parameters supplied.
getUrl() - Method in class net.sourceforge.stripes.tag.LinkTagSupport
Gets the URL that is supplied by the user/developer on the page.
getUrlBinding(Class<? extends ActionBean>) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Takes a class that implements ActionBean and returns the URL binding of that class.
getUrlBinding(Class<? extends ActionBean>) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Takes a class that implements ActionBean and returns the URL binding of that class.
getUrlBinding(Class<? extends ActionBean>) - Method in class net.sourceforge.stripes.controller.NameBasedActionResolver
Finds or generates the URL binding for the class supplied.
getUrlBinding(String) - Method in class net.sourceforge.stripes.controller.NameBasedActionResolver
Takes a class name and translates it into a URL binding by removing extraneous package names, removing Action, Bean, or ActionBean from the end of the class name if present, replacing periods with slashes, and appending a standard suffix as supplied by NameBasedActionResolver.getBindingSuffix().
getUrlBinding() - Method in class net.sourceforge.stripes.tools.ActionBeanInfo
The UrlBinding extracted from the ActionBean.
getUrlBindingFromPath(String) - Method in interface net.sourceforge.stripes.controller.ActionResolver
Returns the URL binding that is a substring of the path provided.
getUrlBindingFromPath(String) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Returns the URL binding that is a substring of the path provided.
getUserPrincipal() - Method in class net.sourceforge.stripes.controller.FlashRequest
 
getUserPrincipal() - Method in class net.sourceforge.stripes.mock.MockHttpServletRequest
Returns the Principal if one is set on the request.
getValidatedProperties(Class<?>) - Method in class net.sourceforge.stripes.controller.BindingPolicyManager
Get all the properties and nested properties of the given class for which there is a corresponding ValidationMetadata, as returned by ValidationMetadataProvider.getValidationMetadata(Class, ParameterName).
getValidationErrors() - Method in class net.sourceforge.stripes.action.ActionBeanContext
Returns the set of validation errors associated with the current form.
getValidationErrors() - Method in class net.sourceforge.stripes.mock.MockRoundtrip
Gets the (potentially empty) set of Validation Errors that were produced by the request.
getValidationMetadata() - Method in class net.sourceforge.stripes.tag.InputTagSupport
 
getValidationMetadata() - Method in class net.sourceforge.stripes.util.UrlBuilder
Get a map of property names to ValidationMetadata for the ActionBean class bound to the URL being built.
getValidationMetadata(Class<?>) - Method in class net.sourceforge.stripes.validation.DefaultValidationMetadataProvider
 
getValidationMetadata(Class<?>, ParameterName) - Method in class net.sourceforge.stripes.validation.DefaultValidationMetadataProvider
 
getValidationMetadata(Class<?>) - Method in interface net.sourceforge.stripes.validation.ValidationMetadataProvider
Get a map of property names to ValidationMetadata for the given ActionBean class.
getValidationMetadata(Class<?>, ParameterName) - Method in interface net.sourceforge.stripes.validation.ValidationMetadataProvider
Get the validation metadata associated with the named property of the given ActionBean class.
getValidationMetadataProvider() - Method in interface net.sourceforge.stripes.config.Configuration
Returns an instance of ValidationMetadataProvider that can be used by Stripes to determine what validations need to be applied during LifecycleStage.BindingAndValidation.
getValidationMetadataProvider() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Returns an instance of ValidationMetadataProvider that can be used by Stripes to determine what validations need to be applied during LifecycleStage.BindingAndValidation.
getValue() - Method in class net.sourceforge.stripes.controller.UrlBindingParameter
Return the parameter value that was extracted from a URI.
getValue(String) - Method in class net.sourceforge.stripes.mock.MockHttpSession
Deprecated method.
getValue(InputTagSupport) - Method in class net.sourceforge.stripes.tag.BeanFirstPopulationStrategy
Implementation of the interface method that will follow the search described in the class level JavaDoc and attempt to find a value for this tag.
getValue(InputTagSupport) - Method in class net.sourceforge.stripes.tag.DefaultPopulationStrategy
Implementation of the interface method that will follow the search described in the class level JavaDoc and attempt to find a value for this tag.
getValue() - Method in class net.sourceforge.stripes.tag.FormatTag
Get the object to be formatted
getValue() - Method in class net.sourceforge.stripes.tag.InputButtonSupportTag
Returns the value set with setValue().
getValue() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Returns the value that this checkbox will submit if it is checked.
getValue() - Method in class net.sourceforge.stripes.tag.InputHiddenTag
Returns the value set with setValue().
getValue() - Method in class net.sourceforge.stripes.tag.InputImageTag
 
getValue() - Method in class net.sourceforge.stripes.tag.InputOptionsCollectionTag
Returns the property name set with setValue().
getValue() - Method in class net.sourceforge.stripes.tag.InputOptionTag
Returns the value of the option as set with setValue().
getValue() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Returns the value set with setValue()
getValue() - Method in class net.sourceforge.stripes.tag.InputSelectTag
Returns the String value set by the tag attribute on the JSP, or the override value set in the HttpRequest, or the override value bound to the ActionBean object in scope.
getValue() - Method in class net.sourceforge.stripes.tag.InputTextAreaTag
Returns the value set using setValue().
getValue() - Method in class net.sourceforge.stripes.tag.InputTextTag
Returns the value set using setValue().
getValue() - Method in class net.sourceforge.stripes.tag.ParamTag
Gets the value attribute, as set with setValue().
getValue(InputTagSupport) - Method in interface net.sourceforge.stripes.tag.PopulationStrategy
 
getValue() - Method in class net.sourceforge.stripes.tag.UrlTag
Gets the URL as supplied on the page.
getValue(NodeEvaluation, Object) - Method in class net.sourceforge.stripes.util.bean.ArrayPropertyAccessor
Gets the index specified by the current node from the target array.
getValue(NodeEvaluation, Object) - Method in class net.sourceforge.stripes.util.bean.JavaBeanPropertyAccessor
Fetches the specified property value from the bean if it exists.
getValue(NodeEvaluation, List<?>) - Method in class net.sourceforge.stripes.util.bean.ListPropertyAccessor
Fetches the value stored at the index specified by the current node.
getValue(NodeEvaluation, Map<?, ?>) - Method in class net.sourceforge.stripes.util.bean.MapPropertyAccessor
Gets the value stored in the Map under the key specified by the current node.
getValue(NodeEvaluation, T) - Method in interface net.sourceforge.stripes.util.bean.PropertyAccessor
Gets the value specified by the NodeEvaluation in the target object.
getValue() - Method in class net.sourceforge.stripes.util.bean.PropertyExpressionEvaluation
Fetches the value of this expression evaluated against the bean.
getValue(ELContext, Object, Object) - Method in class net.sourceforge.stripes.validation.expression.Jsp21ExpressionExecutor.StripesELResolver
Attempts to resolve the value as described in the class level javadoc.
getValueFromActionBean(InputTagSupport) - Method in class net.sourceforge.stripes.tag.DefaultPopulationStrategy
Helper method that will check to see if there is an ActionBean present in the request, and if so, retrieve the value for this tag from the ActionBean.
getValueFromTag(InputTagSupport) - Method in class net.sourceforge.stripes.tag.DefaultPopulationStrategy
Helper method that will retrieve the preferred value set on the tag in the JSP.
getValueNames() - Method in class net.sourceforge.stripes.mock.MockHttpSession
Returns a String[] of all the attribute names in session.
getValueOnPage() - Method in class net.sourceforge.stripes.tag.InputCheckBoxTag
Returns the body of the tag if it is present and not empty, otherwise returns the value of the 'checked' attribute.
getValueOnPage() - Method in class net.sourceforge.stripes.tag.InputRadioButtonTag
Returns the body of the tag if it is present and not empty, otherwise returns the value of the 'checked' attribute.
getValueOnPage() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Used during repopulation to query the tag for a value of values provided to the tag on the JSP.
getValuesFromRequest(InputTagSupport) - Method in class net.sourceforge.stripes.tag.DefaultPopulationStrategy
Helper method that will check the current request for user submitted values for the tag supplied and return them as a String[] if there is one or more present.
getValueType() - Method in class net.sourceforge.stripes.util.bean.NodeEvaluation
Gets the Type object which represents the type returned by evaluating up to this node.
getVar() - Method in class net.sourceforge.stripes.tag.FieldMetadataTag
 
getVar() - Method in class net.sourceforge.stripes.tag.UrlTag
Gets the name of the scoped variable to store the URL in.
getVar() - Method in class net.sourceforge.stripes.tag.UseActionBeanTag
Gets the name of the page scope variable to which the ActionBean will be bound.
getVar() - Method in class net.sourceforge.stripes.tag.VarTagSupport
Get the name of the variable to which the value will be assigned
getVariableInfo(TagData) - Method in class net.sourceforge.stripes.tag.ErrorsTagExtraInfo
Returns an array of length two, for the variables exposed.
getVariableInfo(TagData) - Method in class net.sourceforge.stripes.tag.UseActionBeanTagExtraInfo
Attempts to return type information so that the container can create a named variable for the action bean.
getVariableMapper() - Method in class net.sourceforge.stripes.validation.expression.Jsp21ExpressionExecutor.StripesELContext
Returns a no-op implementation of VariableMapper.
getWildcardTypeBound(WildcardType) - Method in class net.sourceforge.stripes.util.bean.PropertyExpressionEvaluation
Gets the preferred bound from the WildcardType provided.
getWriter() - Method in class net.sourceforge.stripes.controller.DynamicMappingFilter.ErrorTrappingResponseWrapper
 
getWriter() - Method in class net.sourceforge.stripes.mock.MockHttpServletResponse
Returns a reference to a PrintWriter to be used for character output.
GLOBAL_ERROR - Static variable in class net.sourceforge.stripes.validation.ValidationErrors
Key that is used to store global (i.e.
globToPattern(String...) - Method in class net.sourceforge.stripes.controller.BindingPolicyManager
Converts a glob to a regex Pattern.
group - Variable in class net.sourceforge.stripes.tag.InputOptionsCollectionTag.Entry
 
GZIP - Static variable in class net.sourceforge.stripes.util.Base64
Specify that data should be gzip-compressed.

H

handle(Throwable, HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.exception.DefaultExceptionHandler
Implementation of the ExceptionHandler interface that attempts to find a method that is capable of handing the exception.
handle(FileUploadLimitExceededException, HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.exception.DefaultExceptionHandler
FileUploadLimitExceededException is notoriously difficult to handle for several reasons: The exception is thrown during construction of the StripesRequestWrapper.
handle(Throwable, HttpServletRequest, HttpServletResponse) - Method in class net.sourceforge.stripes.exception.DefaultExceptionHandler.HandlerProxy
Invokes the handler and executes the resolution if one is returned.
handle(Throwable, HttpServletRequest, HttpServletResponse) - Method in interface net.sourceforge.stripes.exception.ExceptionHandler
Responsible for handling any exceptions that arise as described in the class level javadoc.
handleActionBeanNotFound(ActionBeanContext, String) - Method in class net.sourceforge.stripes.controller.NameBasedActionResolver
Invoked when no appropriate ActionBean can be located.
handlePropertyBindingError(ActionBean, ParameterName, List<Object>, Exception, ValidationErrors) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Invoked whenever an exception is thrown when attempting to bind a property to an ActionBean.
HandlesEvent - Annotation Type in net.sourceforge.stripes.action
Annotation used by ActionBean to declare that a method is capable of handling a named event being submitted by a client.
handleValidationErrors(ExecutionContext) - Static method in class net.sourceforge.stripes.controller.DispatcherHelper
Responsible for checking to see if validation errors exist and if so for handling them appropriately.
handleValidationErrors(ExecutionContext) - Method in class net.sourceforge.stripes.controller.DispatcherServlet
Responsible for handling any validation errors that arise during validation.
handleValidationErrors(ValidationErrors) - Method in interface net.sourceforge.stripes.validation.ValidationErrorHandler
Allows the ActionBean to influence what happens when validation errors occur during validation and binding.
hasErrors(ActionBean, String) - Static method in class net.sourceforge.stripes.tag.ElFunctions
Indicates if validation errors exist for the given field of the given ActionBean.
hasErrors() - Method in class net.sourceforge.stripes.tag.InputTagSupport
Returns true if one or more validation errors exist for the field represented by this input tag.
hasFieldErrors() - Method in class net.sourceforge.stripes.validation.ValidationErrors
Returns true if there are field-specific errors present, and false if there are only global errors, or no errors at all.
hashCode() - Method in class net.sourceforge.stripes.action.LocalizableMessage
Generated hashCode method.
hashCode() - Method in class net.sourceforge.stripes.action.SimpleMessage
Generated hash code method.
hashCode() - Method in class net.sourceforge.stripes.controller.ParameterName
Simple hashcode method based on the name of the parameter.
hashCode() - Method in class net.sourceforge.stripes.controller.UrlBinding
 
hashCode() - Method in class net.sourceforge.stripes.controller.UrlBindingParameter
 
hashCode() - Method in class net.sourceforge.stripes.validation.LocalizableError
Generated hashCode method.
hashCode() - Method in class net.sourceforge.stripes.validation.ScopedLocalizableError
Generated hashCode() method.
hashCode() - Method in class net.sourceforge.stripes.validation.SimpleError
Hash code based on the message, field name key, action path and parameters.
hasNonEmptyValues() - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder.Row
Returns true if the row had any non-empty values in it, otherwise false.
HtmlTagSupport - Class in net.sourceforge.stripes.tag
Provides basic facilities for any tag that wishes to mimic a standard HTML/XHTML tag.
HtmlTagSupport() - Constructor for class net.sourceforge.stripes.tag.HtmlTagSupport
 
HtmlTagSupportBeanInfo - Class in net.sourceforge.stripes.tag
Describes the properties supported by the HtmlTagSupport class which is the parent of all the HTML Form/Input tags in Stripes.
HtmlTagSupportBeanInfo() - Constructor for class net.sourceforge.stripes.tag.HtmlTagSupportBeanInfo
 
HtmlUtil - Class in net.sourceforge.stripes.util
Provides simple utility methods for dealing with HTML.
HtmlUtil() - Constructor for class net.sourceforge.stripes.util.HtmlUtil
 
HttpCache - Annotation Type in net.sourceforge.stripes.action
This annotation can be applied to an event handler method or to an ActionBean class to suggest to the HTTP client how it should cache the response.
HttpCacheInterceptor - Class in net.sourceforge.stripes.controller
Looks for an HttpCache annotation on the event handler method, the ActionBean class or the ActionBean's superclasses.
HttpCacheInterceptor() - Constructor for class net.sourceforge.stripes.controller.HttpCacheInterceptor
 
HttpUtil - Class in net.sourceforge.stripes.util
Provides helper methods for working with HTTP requests and responses.

I

ignore(boolean) - Method in class net.sourceforge.stripes.validation.ValidationMetadata
Sets whether or not this field should be ignored during binding and validation.
ignore() - Method in class net.sourceforge.stripes.validation.ValidationMetadata
Returns true if this field should be ignored in binding and validation.
include(ServletRequest, ServletResponse) - Method in class net.sourceforge.stripes.mock.MockRequestDispatcher
Simply stores that the URL was included an then returns.
includeRequestParameters(boolean) - Method in class net.sourceforge.stripes.action.RedirectResolution
If set to true, will cause absolutely all request parameters present in the current request to be appended to the redirect URL that will be sent to the browser.
IndividualErrorTag - Class in 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.
IndividualErrorTag() - Constructor for class net.sourceforge.stripes.tag.IndividualErrorTag
 
info(Throwable, Object...) - Method in class net.sourceforge.stripes.util.Log
Logs a Throwable and optional message parts at level info.
info(Object...) - Method in class net.sourceforge.stripes.util.Log
Logs one or more message parts at level info.
info(Object) - Method in class net.sourceforge.stripes.util.Log4JLogger
Logs a message with org.apache.log4j.Priority.INFO.
info(Object, Throwable) - Method in class net.sourceforge.stripes.util.Log4JLogger
Logs a message with org.apache.log4j.Priority.INFO.
init(Configuration) - Method in interface net.sourceforge.stripes.config.ConfigurableComponent
Invoked directly after instantiation to allow the configured component to perform one time initialization.
init() - Method in interface net.sourceforge.stripes.config.Configuration
Called by the DispatcherServlet to initialize the Configuration.
init() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Creates and stores instances of the objects of the type that the Configuration is responsible for providing, except where subclasses have already provided instances.
init() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Calls super.init() then adds Formatters and TypeConverters found in packages listed in BootstrapPropertyResolver.PACKAGES to their respective factories.
init(Configuration) - Method in class net.sourceforge.stripes.controller.AnnotatedClassActionResolver
Scans the classpath of the current classloader (not including parents) to find implementations of the ActionBean interface.
init(Configuration) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanContextFactory
Stores the configuration, and looks up the ActionBeanContext class specified.
init(Configuration) - Method in class net.sourceforge.stripes.controller.DefaultActionBeanPropertyBinder
Looks up and caches in a useful form the metadata necessary to perform validations as properties are bound to the bean.
init(FilterConfig) - Method in class net.sourceforge.stripes.controller.DynamicMappingFilter
 
init(Configuration) - Method in class net.sourceforge.stripes.controller.multipart.DefaultMultipartWrapperFactory
Invoked directly after instantiation to allow the configured component to perform one time initialization.
init(Configuration) - Method in class net.sourceforge.stripes.controller.NameBasedActionResolver
First invokes the parent classes init() method and then quietly adds a specialized ActionBean to the set of ActionBeans the resolver is managing.
init(FilterConfig) - Method in class net.sourceforge.stripes.controller.StripesFilter
Performs the necessary initialization for the StripesFilter.
init(Configuration) - Method in class net.sourceforge.stripes.exception.DefaultExceptionHandler
Stores the configuration and examines the handler for usable delegate methods.
init(Configuration) - Method in class net.sourceforge.stripes.exception.DelegatingExceptionHandler
Looks up the filters as defined in the Configuration and then invokes the ResolverUtil to find implementations of AutoExceptionHandler.
init() - Method in class net.sourceforge.stripes.format.DateFormatter
Constructs the DateFormat used for formatting, based on the values passed to the various setter methods on the class.
init(Configuration) - Method in class net.sourceforge.stripes.format.DefaultFormatterFactory
Stores a reference to the configuration and configures the default formatters.
init() - Method in class net.sourceforge.stripes.format.EnumFormatter
Does nothing since no initialization is needed.
init() - Method in interface net.sourceforge.stripes.format.Formatter
Called once all setters have been invoked, to allow Formatter to prepare itself.
init() - Method in class net.sourceforge.stripes.format.NumberFormatter
Instantiates the NumberFormat based on the information provided through setter methods.
init() - Method in class net.sourceforge.stripes.format.ObjectFormatter
Does nothing.
init(Configuration) - Method in class net.sourceforge.stripes.integration.spring.SpringInterceptorSupport
Fetches the ServletContext and invokes SpringHelper.injectBeans() to auto-wire any Spring dependencies prior to being placed into service.
init(Configuration) - Method in class net.sourceforge.stripes.localization.DefaultLocalePicker
Attempts to read the
init(Configuration) - Method in class net.sourceforge.stripes.localization.DefaultLocalizationBundleFactory
Uses the BootstrapPropertyResolver attached to the Configuration in order to look for configured bundle names in the servlet init parameters etc.
init(Configuration) - Method in class net.sourceforge.stripes.tag.DefaultPopulationStrategy
Called by the Configuration to configure the component.
init(InputTagSupport) - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRenderer
Simply stores the tag passed in.
init(Configuration) - Method in class net.sourceforge.stripes.tag.DefaultTagErrorRendererFactory
Looks up the name of the configured renderer class in the configuration and attempts to find the Class object for it.
init(InputTagSupport) - Method in interface net.sourceforge.stripes.tag.TagErrorRenderer
Initialize this renderer for a specific tag instance
init(Configuration) - Method in class net.sourceforge.stripes.validation.DefaultTypeConverterFactory
Places all the known convertible types and type converters into an instance level Map.
init(Configuration) - Method in class net.sourceforge.stripes.validation.DefaultValidationMetadataProvider
Currently does nothing except store a reference to configuration.
initActionBeanContextFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default ActionBeanContextFactory.
initActionBeanContextFactory() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
initActionBeanPropertyBinder() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default ActionBeanPropertyBinder.
initActionBeanPropertyBinder() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
initActionResolver() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default ActionResovler.
initActionResolver() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
initCoreInterceptors() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Instantiates the core interceptors, allowing subclasses to override the default behavior
initCoreInterceptors() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a list of class names separated by commas under the configuration key RuntimeConfiguration.CORE_INTERCEPTOR_LIST.
initDebugMode() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default debug mode value.
initDebugMode() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a true/false value in config.
initExceptionHandler() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default ExceptionHandler instance to be used.
initExceptionHandler() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
initFormatterFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default FormatterFactory.
initFormatterFactory() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
initialize() - Static method in class net.sourceforge.stripes.validation.expression.ExpressionValidator
Attempts to instantiate executor classes (as described in the class level javadoc) until a working one is found.
initializeComponent(Class<T>, String) - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Internal utility method that is used to implement the main pattern of this class: lookup the name of a class based on a property name, instantiate the named class and initialize it.
initInterceptors() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default Map of Interceptor instances.
initInterceptors() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a list of class names separated by commas under the configuration key RuntimeConfiguration.INTERCEPTOR_LIST.
initInterceptors(List) - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Splits a comma-separated list of class names and maps each LifecycleStage to the interceptors in the list that intercept it.
initLocalePicker() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default LocalePicker.
initLocalePicker() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
initLocalizationBundleFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default LocalizationBundleFactory.
initLocalizationBundleFactory() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
initMultipartWrapperFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default MultipartWrapperFactory.
initMultipartWrapperFactory() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
initPopulationStrategy() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default PopulationStrategy instance to be used.
initPopulationStrategy() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
initTagErrorRendererFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default TagErrorRendererFactory instance to be used.
initTagErrorRendererFactory() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
initTypeConverterFactory() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default TypeConverterFactory.
initTypeConverterFactory() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
initValidationMetadataProvider() - Method in class net.sourceforge.stripes.config.DefaultConfiguration
Allows subclasses to initialize a non-default ValidationMetadataProvider.
initValidationMetadataProvider() - Method in class net.sourceforge.stripes.config.RuntimeConfiguration
Looks for a class name in config and uses that to create the component.
injectBeans(Object, ActionBeanContext) - Static method in class net.sourceforge.stripes.integration.spring.SpringHelper
Injects Spring managed beans into using a Web Application Context that is derived from the ServletContext, which is in turn looked up using the ActionBeanContext.
injectBeans(Object, ServletContext) - Static method in class net.sourceforge.stripes.integration.spring.SpringHelper
Injects Spring managed beans using a Web Application Context derived from the ServletContext.
injectBeans(Object, ApplicationContext) - Static method in class net.sourceforge.stripes.integration.spring.SpringHelper
Looks for all methods and fields annotated with @SpringBean and attempts to lookup and inject a managed bean into the field/property.
InputButtonSupportTag - Class in net.sourceforge.stripes.tag
Support tag class that can generate HTML form fields with localized value attributes.
InputButtonSupportTag() - Constructor for class net.sourceforge.stripes.tag.InputButtonSupportTag
 
InputButtonTag - Class in net.sourceforge.stripes.tag
Tag that generates HTML form fields of type {@literal InputButtonTag() - Constructor for class net.sourceforge.stripes.tag.InputButtonTag
Sets the input tag type to be button.
InputCheckBoxTag - Class in net.sourceforge.stripes.tag
Implements an HTML tag that generates form fields of type <input type="checkbox"/>.
InputCheckBoxTag() - Constructor for class net.sourceforge.stripes.tag.InputCheckBoxTag
Basic constructor that sets the input tag's type attribute to "checkbox".
InputFileTag - Class in net.sourceforge.stripes.tag
Tag that generates HTML form fields of type {@literal InputFileTag() - Constructor for class net.sourceforge.stripes.tag.InputFileTag
Basic constructor that sets the input tag's type attribute to "file".
InputHiddenTag - Class in net.sourceforge.stripes.tag
Generates one or more {@literal InputHiddenTag() - Constructor for class net.sourceforge.stripes.tag.InputHiddenTag
Basic constructor that sets the input tag's type attribute to "hidden".
InputImageTag - Class in net.sourceforge.stripes.tag
Tag class that generates an image button for use in HTML forms, e.g:
InputImageTag() - Constructor for class net.sourceforge.stripes.tag.InputImageTag
Sets the tag's type to be an image input.
InputLabelTag - Class in 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.
InputLabelTag() - Constructor for class net.sourceforge.stripes.tag.InputLabelTag
 
InputOptionsCollectionTag - Class in net.sourceforge.stripes.tag
Writes a set of <option value="foo">bar</option> tags to the page based on the contents of a Collection.
InputOptionsCollectionTag() - Constructor for class net.sourceforge.stripes.tag.InputOptionsCollectionTag
 
InputOptionsCollectionTag.Entry - Class in net.sourceforge.stripes.tag
A little container class that holds an entry in the collection of items being used to generate the options, along with the determined label and value (either from a property, or a localized value).
InputOptionsEnumerationTag - Class in net.sourceforge.stripes.tag
Writes a set of <option value="foo">bar</option> tags to the page based on the values of a enum.
InputOptionsEnumerationTag() - Constructor for class net.sourceforge.stripes.tag.InputOptionsEnumerationTag
 
InputOptionsMapTag - Class in net.sourceforge.stripes.tag
Extracts the Set of Map.Entry from the specified Map and uses it as the Collection for the superclass InputOptionsCollectionTag.
InputOptionsMapTag() - Constructor for class net.sourceforge.stripes.tag.InputOptionsMapTag
 
InputOptionTag - Class in net.sourceforge.stripes.tag
Generates an <option value="foo">Fooey</option> HTML tag.
InputOptionTag() - Constructor for class net.sourceforge.stripes.tag.InputOptionTag
 
InputPasswordTag - Class in net.sourceforge.stripes.tag
Tag class that implements an input tag of type password.
InputPasswordTag() - Constructor for class net.sourceforge.stripes.tag.InputPasswordTag
Constructs a new tag for generating password fields.
InputRadioButtonTag - Class in net.sourceforge.stripes.tag
Generates <input type="radio" value="foo"/> HTML tags based on the attribute set on the tag and the state of the form.
InputRadioButtonTag() - Constructor for class net.sourceforge.stripes.tag.InputRadioButtonTag
Basic constructor that sets the input tag's type attribute to "radio".
InputResetTag - Class in net.sourceforge.stripes.tag
Tag that generates HTML form fields of type {@literal InputResetTag() - Constructor for class net.sourceforge.stripes.tag.InputResetTag
Sets the input tag type to be reset.
InputSelectTag - Class in net.sourceforge.stripes.tag
Coordinates with one or more other tags to produce a well formed HTML select tag with state repopulation.
InputSelectTag() - Constructor for class net.sourceforge.stripes.tag.InputSelectTag
 
InputSubmitTag - Class in net.sourceforge.stripes.tag
Tag that generates HTML form fields of type {@literal InputSubmitTag() - Constructor for class net.sourceforge.stripes.tag.InputSubmitTag
Sets the input tag type to be submit.
InputTagSupport - Class in net.sourceforge.stripes.tag
Parent class for all input tags in stripes.
InputTagSupport() - Constructor for class net.sourceforge.stripes.tag.InputTagSupport
 
InputTextAreaTag - Class in net.sourceforge.stripes.tag
Tag that generates HTML form fields of type {@literal