org.apache.beehive.netui.pageflow
Interface PageFlowConstants

All Known Implementing Classes:
ContextCache, FlowController, GlobalApp, InternalUtils, PageFlowController, SharedFlowController

public interface PageFlowConstants

Constants related to Page Flows.


Field Summary
static String ACTION_EXTENSION
          The extension for Struts action URIs used with page flows.
static String ACTION_OVERRIDE
          The prefix for a button or imageButton that has an action.
static String BEGIN_ACTION_NAME
          The name of the special action in a user-defined PageFlowController (.jpf) that is processed when the URI for the .jpf is accessed.
static int DEFAULT_FORWARD_OVERFLOW_COUNT
          The default maximum number of consecutive server forwards before error.
static int DEFAULT_NESTING_OVERFLOW_COUNT
          The default maximum size of the page flow nesting stack.
static String FORWARD_OVERFLOW_COUNT_PARAM
          Servlet context-param that configures the maximum number of consecutive server forwards before error.
static String GLOBALAPP_CLASSNAME
          The name of the GlobalApp class defined by the user for a web application.
static String GLOBALAPP_SOURCEFILE_NAME
          The name of the source file for the GlobalApp class defined by the user for a web application.
static String HTTP_REDIRECTOR_PARAM
          Servlet context-param that configures a ForwardRedirectHandler- derived class to instantiate to handle forwards and redirects.
static String JPF_EXTENSION
          The file extension for user-defined PageFlowController source files.
static String JPF_MODULE_CONFIG_EXTENSION
          The file extensionfor Struts configuration files generated by the Page Flow compiler.
static String JPF_MODULE_CONFIG_GEN_DIR
          The webapp-relative directory for Struts module configuration files generated by the page flow compiler.
static String JPF_MODULE_CONFIG_PREFIX
          The filename prefix for Struts module configuration files generated by the page flow compiler.
static String LOGIN_HANDLER_PARAM
          Servlet context-param that configures a LoginHandler-derived class to instantiate to handle user logins.
static String NESTING_OVERFLOW_COUNT_PARAM
          Servlet context-param that configures the maximum size of the page flow nesting stack.
static String SECURE_FORWARDS_PARAM
          Servlet context-param that configures whether to apply security constraints on server forwards to page flow actions.
 

Field Detail

BEGIN_ACTION_NAME

static final String BEGIN_ACTION_NAME
The name of the special action in a user-defined PageFlowController (.jpf) that is processed when the URI for the .jpf is accessed.

See Also:
Constant Field Values

JPF_EXTENSION

static final String JPF_EXTENSION
The file extension for user-defined PageFlowController source files.

See Also:
Constant Field Values

ACTION_EXTENSION

static final String ACTION_EXTENSION
The extension for Struts action URIs used with page flows.

See Also:
Constant Field Values

GLOBALAPP_CLASSNAME

static final String GLOBALAPP_CLASSNAME
The name of the GlobalApp class defined by the user for a web application.

See Also:
Constant Field Values

GLOBALAPP_SOURCEFILE_NAME

static final String GLOBALAPP_SOURCEFILE_NAME
The name of the source file for the GlobalApp class defined by the user for a web application.

See Also:
Constant Field Values

JPF_MODULE_CONFIG_PREFIX

static final String JPF_MODULE_CONFIG_PREFIX
The filename prefix for Struts module configuration files generated by the page flow compiler.

See Also:
Constant Field Values

JPF_MODULE_CONFIG_EXTENSION

static final String JPF_MODULE_CONFIG_EXTENSION
The file extensionfor Struts configuration files generated by the Page Flow compiler.

See Also:
Constant Field Values

ACTION_OVERRIDE

static final String ACTION_OVERRIDE
The prefix for a button or imageButton that has an action.

See Also:
Constant Field Values

FORWARD_OVERFLOW_COUNT_PARAM

static final String FORWARD_OVERFLOW_COUNT_PARAM
Servlet context-param that configures the maximum number of consecutive server forwards before error.

See Also:
Constant Field Values

NESTING_OVERFLOW_COUNT_PARAM

static final String NESTING_OVERFLOW_COUNT_PARAM
Servlet context-param that configures the maximum size of the page flow nesting stack.

See Also:
Constant Field Values

DEFAULT_FORWARD_OVERFLOW_COUNT

static final int DEFAULT_FORWARD_OVERFLOW_COUNT
The default maximum number of consecutive server forwards before error.

See Also:
Constant Field Values

DEFAULT_NESTING_OVERFLOW_COUNT

static final int DEFAULT_NESTING_OVERFLOW_COUNT
The default maximum size of the page flow nesting stack.

See Also:
Constant Field Values

HTTP_REDIRECTOR_PARAM

static final String HTTP_REDIRECTOR_PARAM
Servlet context-param that configures a ForwardRedirectHandler- derived class to instantiate to handle forwards and redirects.

See Also:
Constant Field Values

LOGIN_HANDLER_PARAM

static final String LOGIN_HANDLER_PARAM
Servlet context-param that configures a LoginHandler-derived class to instantiate to handle user logins.

See Also:
Constant Field Values

SECURE_FORWARDS_PARAM

static final String SECURE_FORWARDS_PARAM
Servlet context-param that configures whether to apply security constraints on server forwards to page flow actions. Normally, security constraints are not applied on server forwards.

See Also:
Constant Field Values

JPF_MODULE_CONFIG_GEN_DIR

static final String JPF_MODULE_CONFIG_GEN_DIR
The webapp-relative directory for Struts module configuration files generated by the page flow compiler.

See Also:
Constant Field Values