KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > oddjob > webapp > WebappConstants


1 /*
2  * Copyright © 2004, Rob Gordon.
3  */

4 package org.oddjob.webapp;
5
6 /**
7  * Constants used in the Webapp.
8  *
9  * @author Rob Gordon.
10  */

11 public class WebappConstants {
12
13     /** The parameter that identifies the Oddjob
14      * configuration file. */

15     public final static String JavaDoc FILE_PARAM = "file";
16     
17     /** The parameter that identifies the Oddjob
18      * job name. */

19     public final static String JavaDoc NAME_PARAM = "name";
20     
21     /** The id of the node to use as the root of the displayed
22      * tree. If empty then oddjob node itself is displayed.*/

23     public final static String JavaDoc ROOT_PARAM = "root";
24     
25     /** The log format for the log panel. */
26     public final static String JavaDoc LOG_FORMAT_PARAM = "logFormat";
27     
28     /** The single instance of Oddjob created by the Oddjob
29      * Servlet. */

30     public final static String JavaDoc ODDJOB_INSTANCE = "oj_oddjob";
31     
32     /** The detail lookup which provides an instance of a lookup
33      * on the single Oddjob instance. */

34     public final static String JavaDoc DETAIL_LOOKUP = "oj_detaillookup";
35     
36     /** An IconRegistry instance which will be created using the
37      * IconServlet to repond to icon image requests. */

38     public final static String JavaDoc ICON_REGISTRY = "oj_iconregistry";
39         
40 }
41
Popular Tags