KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > jmx > browser > web > Constants


1 /*
2
3  * EJTools, the Enterprise Java Tools
4
5  *
6
7  * Distributable under LGPL license.
8
9  * See terms of license at www.gnu.org.
10
11  */

12
13 package org.ejtools.jmx.browser.web;
14
15
16
17
18
19 /**
20
21  * Description of the Class
22
23  *
24
25  * @author letiemble
26
27  * @created 28 février 2002
28
29  * @version $Revision: 1.6 $
30
31  * @todo Javadoc to complete
32
33  */

34
35 public final class Constants
36
37 {
38
39    /** Description of the Field */
40
41    public final static String JavaDoc CONNECTOR = "tree";
42
43    /** Description of the Field */
44
45    public final static String JavaDoc CUSTOM_VIEW = "custom.view";
46
47    /** Description of the Field */
48
49    public final static String JavaDoc CUSTOM_VIEW_ATTRIBUTES = "custom.view.attributes";
50
51    /** Description of the Field */
52
53    public final static String JavaDoc CUSTOM_VIEW_INDEX = "custom.view.index";
54
55    /** Description of the Field */
56
57    public final static String JavaDoc CUSTOM_VIEW_OPERATIONS = "custom.view.operations";
58
59    /** Description of the Field */
60
61    public final static String JavaDoc DETAIL = "detail";
62
63    /** Description of the Field */
64
65    public final static String JavaDoc DETAIL_INFO = "detail.info";
66
67    /** Description of the Field */
68
69    public final static String JavaDoc DOMAIN = "domain";
70
71    /** Description of the Field */
72
73    public final static String JavaDoc INVOCATION_RESULT = "invoke.result";
74
75    /** Description of the Field */
76
77    public final static String JavaDoc NUMBER = "number";
78
79    /** Description of the Field */
80
81    public final static int RECORD_PER_PAGE = 50;
82
83    /** Description of the Field */
84
85    public final static String JavaDoc SEARCH_RESULT = "search.result";
86
87    /** Description of the Field */
88
89    public final static String JavaDoc TREE = "tree";
90
91 }
92
93
Popular Tags