Path: blob/master/src/java.management/share/classes/com/sun/jmx/defaults/ServiceName.java
41161 views
/*1* Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package com.sun.jmx.defaults;2627/**28* Used for storing default values used by JMX services.29*30* @since 1.531*/32public class ServiceName {3334// private constructor defined to "hide" the default public constructor35private ServiceName() {36}3738/**39* The object name of the MBeanServer delegate object40* <BR>41* The value is <CODE>JMImplementation:type=MBeanServerDelegate</CODE>.42*/43public static final String DELEGATE =44"JMImplementation:type=MBeanServerDelegate" ;4546/**47* The default key properties for registering the class loader of the48* MLet service.49* <BR>50* The value is <CODE>type=MLet</CODE>.51*/52public static final String MLET = "type=MLet";5354/**55* The default domain.56* <BR>57* The value is <CODE>DefaultDomain</CODE>.58*/59public static final String DOMAIN = "DefaultDomain";6061/**62* The name of the JMX specification implemented by this product.63* <BR>64* The value is <CODE>Java Management Extensions</CODE>.65*/66public static final String JMX_SPEC_NAME = "Java Management Extensions";6768/**69* The version of the JMX specification implemented by this product.70* <BR>71* The value is <CODE>1.4</CODE>.72*/73public static final String JMX_SPEC_VERSION = "1.4";7475/**76* The vendor of the JMX specification implemented by this product.77* <BR>78* The value is <CODE>Oracle Corporation</CODE>.79*/80public static final String JMX_SPEC_VENDOR = "Oracle Corporation";8182/**83* The name of this product implementing the JMX specification.84* <BR>85* The value is <CODE>JMX</CODE>.86*/87public static final String JMX_IMPL_NAME = "JMX";8889/**90* The name of the vendor of this product implementing the91* JMX specification.92* <BR>93* The value is <CODE>Oracle Corporation</CODE>.94*/95public static final String JMX_IMPL_VENDOR = "Oracle Corporation";96}979899