KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > controller > form > FormMVCConstants


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.form;
8
9
10 /**
11  * <p>
12  * This interface holds the constants for the form MVC
13  * </p>
14  *
15  * @author Brian Pontarelli
16  */

17 public interface FormMVCConstants {
18
19     /**
20      * The name that the ActionHandler of the current request is stored under
21      * inside the HttpServletRequest (unless it is a repository item)
22      */

23     String JavaDoc ACTION_HANDLER_REQUEST_KEY = "com.inversoft.verge.mvc.controller.form.ActionHandler";
24 }
25
Popular Tags