blob: f70730b8d21dca946fff3c66f4d46c634a9c4b7d [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 1999-2006 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26package com.sun.jmx.defaults;
27
28/**
29 * Used for storing default values used by JMX services.
30 *
31 * @since 1.5
32 */
33public class ServiceName {
34
35 // private constructor defined to "hide" the default public constructor
36 private ServiceName() {
37 }
38
39 /**
40 * The object name of the MBeanServer delegate object
41 * <BR>
42 * The value is <CODE>JMImplementation:type=MBeanServerDelegate</CODE>.
43 */
44 public static final String DELEGATE =
45 "JMImplementation:type=MBeanServerDelegate" ;
46
47 /**
48 * The default key properties for registering the class loader of the
49 * MLet service.
50 * <BR>
51 * The value is <CODE>type=MLet</CODE>.
52 */
53 public static final String MLET = "type=MLet";
54
55 /**
56 * The default domain.
57 * <BR>
58 * The value is <CODE>DefaultDomain</CODE>.
59 */
60 public static final String DOMAIN = "DefaultDomain";
61
62 /**
63 * The name of the JMX specification implemented by this product.
64 * <BR>
65 * The value is <CODE>Java Management Extensions</CODE>.
66 */
67 public static final String JMX_SPEC_NAME = "Java Management Extensions";
68
69 /**
70 * The version of the JMX specification implemented by this product.
71 * <BR>
72 * The value is <CODE>1.4</CODE>.
73 */
74 public static final String JMX_SPEC_VERSION = "1.4";
75
76 /**
77 * The vendor of the JMX specification implemented by this product.
78 * <BR>
79 * The value is <CODE>Sun Microsystems</CODE>.
80 */
81 public static final String JMX_SPEC_VENDOR = "Sun Microsystems";
82
83 /**
84 * The name of this product implementing the JMX specification.
85 * <BR>
86 * The value is <CODE>JMX</CODE>.
87 */
88 public static final String JMX_IMPL_NAME = "JMX";
89
90 /**
91 * The name of the vendor of this product implementing the
92 * JMX specification.
93 * <BR>
94 * The value is <CODE>Sun Microsystems</CODE>.
95 */
96 public static final String JMX_IMPL_VENDOR = "Sun Microsystems";
97}