KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > controller > actionflow > config > DefaultTypes


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.config;
8
9
10 /**
11  * This interface holds the default node types for the
12  * ActionFlow system
13  *
14  * @author Brian Pontarelli
15  * @since 2.0
16  * @version 2.0
17  */

18 public interface DefaultTypes {
19
20     /**
21      * The actionHandler node type value
22      */

23     String JavaDoc ACTION_HANDLER = "actionHandler";
24
25     /**
26      * The presentation node type value
27      */

28     String JavaDoc PRESENTATION = "presentation";
29
30     /**
31      * The default namespace type value
32      */

33     String JavaDoc NAMESPACE = "normal";
34 }
35
Popular Tags