Class FormStoreInterceptor

All Implemented Interfaces:
ConditionalInterceptor, Interceptor, Serializable, ConditionalInterceptor, Interceptor

public class FormStoreInterceptor extends AbstractInterceptor

If the action implements FormDriven, stores the form in the session so it may be retrieved by a later action that displays it. It is usually part of the aflUpdateStack interceptor stack and retrieved by FormRetrieveInterceptor as part of the aflViewStack interceptor stack.

Interceptor parameters

disabled
If true, this interceptor is skipped. Defaults to false.

Extending the interceptor

This can't be usefully extended.

Example code

 @InterceptorRefs({
   @InterceptorRef(value="formStore"),
   @InterceptorRef(value="basicStack")
})
 
See Also:
  • Field Details

    • SESSION_STORED_FORM

      public static final String SESSION_STORED_FORM
  • Constructor Details

    • FormStoreInterceptor

      public FormStoreInterceptor()
  • Method Details