KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > controller > actionflow > ActionFlowConstants


1 /*
2  * Copyright (c) 2003, Inversoft
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.verge.mvc.controller.actionflow;
8
9
10 /**
11  * This interface stores the constants used by the ActionFlow
12  * system. Mostly for storing and locating parameters in the
13  * request that relate to the execution of the ActionFlow
14  * system.
15  *
16  * @author Brian Pontarelli
17  * @since 2.0
18  * @version 2.0
19  */

20 public interface ActionFlowConstants {
21
22     /**
23      * The name that the ActionFlowAction is stored in the HttpServletRequest
24      * under. This can be used by page developers and other code to access the
25      * ActionFlowAction.
26      */

27     String JavaDoc ACTION_REQUEST_KEY = "com.inversoft.verge.mvc.controller.actionflow.ActionFlowAction";
28 }
29
Popular Tags