Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.management/share/classes/com/sun/jmx/defaults/ServiceName.java
41161 views
1
/*
2
* Copyright (c) 1999, 2008, Oracle and/or its affiliates. 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. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package com.sun.jmx.defaults;
27
28
/**
29
* Used for storing default values used by JMX services.
30
*
31
* @since 1.5
32
*/
33
public 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>Oracle Corporation</CODE>.
80
*/
81
public static final String JMX_SPEC_VENDOR = "Oracle Corporation";
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>Oracle Corporation</CODE>.
95
*/
96
public static final String JMX_IMPL_VENDOR = "Oracle Corporation";
97
}
98
99