KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > admin > server > core > jmx > ServiceName


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23 package com.sun.enterprise.admin.server.core.jmx;
24
25 public class ServiceName
26 {
27     /**
28     Private constructor to avoid creation.
29     */

30     private ServiceName()
31     {
32     }
33     /**
34     The object name of the MBeanServer delegate object
35     <BR>
36     The value is <CODE>JMImplementation:type=MBeanServerDelegate</CODE>.
37      */

38     public static final String JavaDoc DELEGATE = "JMImplementation:type=MBeanServerDelegate" ;
39         
40     /**
41     The default domain.
42     <BR>
43     The value is <CODE>DefaultDomain</CODE>.
44     */

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

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

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

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

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

79     public static final String JavaDoc JMX_IMPL_VENDOR = "iPlanet";
80     
81     /**
82      * The version of this product implementing the JMX specification.
83      * <BR>
84      * The value is <CODE>1.0</CODE>.
85      */

86     public static final String JavaDoc JMX_IMPL_VERSION = "7.0";
87
88     /**
89      * The build number of the current product version
90      */

91     public static final String JavaDoc BUILD_NUMBER = "1";
92 }
93
Popular Tags