KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > jmx > defaults > JmxProperties


1 /*
2  * @(#)JmxProperties.java 4.28 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.jmx.defaults;
9
10 /**
11  * This contains the property list defined for this
12  * JMX implementation.
13  *
14  * @version 4.28 12/19/03
15  * @author Sun Microsystems, Inc
16  *
17  * @since 1.5
18  */

19 public class JmxProperties {
20
21     // private constructor defined to "hide" the default public constructor
22
private JmxProperties() {
23     }
24     
25     // PUBLIC STATIC CONSTANTS
26
//------------------------
27

28     /**
29      * References the property that specifies the directory where
30      * the native libraries will be stored before the MLet Service
31      * loads them into memory.
32      * <p>
33      * Property Name: <B>jmx.mlet.library.dir</B>
34      */

35     public static final String JavaDoc JMX_INITIAL_BUILDER =
36     "javax.management.builder.initial";
37
38     /**
39      * References the property that specifies the directory where
40      * the native libraries will be stored before the MLet Service
41      * loads them into memory.
42      * <p>
43      * Property Name: <B>jmx.mlet.library.dir</B>
44      */

45     public static final String JavaDoc MLET_LIB_DIR = "jmx.mlet.library.dir";
46
47     /**
48      * References the property that specifies the full name of the JMX
49      * specification implemented by this product.
50      * <p>
51      * Property Name: <B>jmx.specification.name</B>
52      */

53     public static final String JavaDoc JMX_SPEC_NAME = "jmx.specification.name";
54     
55     /**
56      * References the property that specifies the version of the JMX
57      * specification implemented by this product.
58      * <p>
59      * Property Name: <B>jmx.specification.version</B>
60      */

61      public static final String JavaDoc JMX_SPEC_VERSION = "jmx.specification.version";
62     
63     /**
64      * References the property that specifies the vendor of the JMX
65      * specification implemented by this product.
66      * <p>
67      * Property Name: <B>jmx.specification.vendor</B>
68      */

69     public static final String JavaDoc JMX_SPEC_VENDOR = "jmx.specification.vendor";
70     
71     /**
72      * References the property that specifies the full name of this product
73      * implementing the JMX specification.
74      * <p>
75      * Property Name: <B>jmx.implementation.name</B>
76      */

77     public static final String JavaDoc JMX_IMPL_NAME = "jmx.implementation.name";
78     
79     /**
80      * References the property that specifies the name of the vendor of this
81      * product implementing the JMX specification.
82      * <p>
83      * Property Name: <B>jmx.implementation.vendor</B>
84      */

85     public static final String JavaDoc JMX_IMPL_VENDOR = "jmx.implementation.vendor";
86     
87     /**
88      * References the property that specifies the version of this product
89      * implementing the JMX specification.
90      * <p>
91      * Property Name: <B>jmx.implementation.version</B>
92      */

93     public static final String JavaDoc JMX_IMPL_VERSION = "jmx.implementation.version";
94
95 }
96
Popular Tags