Actions that want to be aware of the application Map object should implement this interface.
This will give them access to a Map where they can put objects that should be available
to other parts of the application.
An interceptor to store
ValidationAware action's messages / errors and field errors into
Http Session, such that it will be retrieveable at a later stage.
All Actions that want to have access to the servlet response object must implement this interface.
This interface is only relevant if the Action is used in a servlet environment.
Note that using this interface makes the Action tied to a servlet environment, so it should be
avoided if possible since things like unit testing will become more difficult.
Actions that want access to the user's HTTP session should implement this interface.
This interface is only relevant if the Action is used in a servlet environment.
Note that using this interface makes the Action tied to a servlet environment, so it should be
avoided if possible since things like unit testing will become more difficult.
This interceptor builds off of the
TokenInterceptor , providing advanced logic for handling invalid tokens.
Unlike the normal token interceptor, this interceptor will attempt to provide intelligent fail-over in the event of
multiple requests using the same session.
This interceptor extends
ConversionErrorInterceptor but only adds conversion errors from the ActionContext to
the field errors of the action if the field value is not null, "", or {""} (a size 1 String array with only an empty
String).