KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)ServiceName.java 1.115 06/09/29
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  * Used for storing default values used by JMX services.
12  *
13  * @since 1.5
14  */

15 public class ServiceName {
16
17     // private constructor defined to "hide" the default public constructor
18
private ServiceName() {
19     }
20
21     /**
22      * The object name of the MBeanServer delegate object
23      * <BR>
24      * The value is <CODE>JMImplementation:type=MBeanServerDelegate</CODE>.
25      */

26     public static final String JavaDoc DELEGATE =
27     "JMImplementation:type=MBeanServerDelegate" ;
28
29     /**
30      * The default key properties for registering the class loader of the
31      * MLet service.
32      * <BR>
33      * The value is <CODE>type=MLet</CODE>.
34      */

35     public static final String JavaDoc MLET = "type=MLet";
36
37     /**
38      * The default domain.
39      * <BR>
40      * The value is <CODE>DefaultDomain</CODE>.
41      */

42     public static final String JavaDoc DOMAIN = "DefaultDomain";
43
44     /**
45      * The name of the JMX specification implemented by this product.
46      * <BR>
47      * The value is <CODE>Java Management Extensions</CODE>.
48      */

49     public static final String JavaDoc JMX_SPEC_NAME = "Java Management Extensions";
50
51     /**
52      * The version of the JMX specification implemented by this product.
53      * <BR>
54      * The value is <CODE>1.0 Final Release</CODE>.
55      */

56     public static final String JavaDoc JMX_SPEC_VERSION = "1.2 Maintenance Release";
57
58     /**
59      * The vendor of the JMX specification implemented by this product.
60      * <BR>
61      * The value is <CODE>Sun Microsystems</CODE>.
62      */

63     public static final String JavaDoc JMX_SPEC_VENDOR = "Sun Microsystems";
64
65     /**
66      * The name of this product implementing the JMX specification.
67      * <BR>
68      * The value is <CODE>JMX</CODE>.
69      */

70     public static final String JavaDoc JMX_IMPL_NAME = "JMX";
71
72     /**
73      * The name of the vendor of this product implementing the
74      * JMX specification.
75      * <BR>
76      * The value is <CODE>Sun Microsystems</CODE>.
77      */

78     public static final String JavaDoc JMX_IMPL_VENDOR = "Sun Microsystems";
79 }
80
Popular Tags