0N/A/*
2362N/A * Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage com.sun.jmx.defaults;
0N/A
0N/A/**
0N/A * Used for storing default values used by JMX services.
0N/A *
0N/A * @since 1.5
0N/A */
0N/Apublic class ServiceName {
0N/A
0N/A // private constructor defined to "hide" the default public constructor
0N/A private ServiceName() {
0N/A }
0N/A
0N/A /**
0N/A * The object name of the MBeanServer delegate object
0N/A * <BR>
0N/A * The value is <CODE>JMImplementation:type=MBeanServerDelegate</CODE>.
0N/A */
0N/A public static final String DELEGATE =
0N/A "JMImplementation:type=MBeanServerDelegate" ;
0N/A
0N/A /**
0N/A * The default key properties for registering the class loader of the
0N/A * MLet service.
0N/A * <BR>
0N/A * The value is <CODE>type=MLet</CODE>.
0N/A */
0N/A public static final String MLET = "type=MLet";
0N/A
0N/A /**
0N/A * The default domain.
0N/A * <BR>
0N/A * The value is <CODE>DefaultDomain</CODE>.
0N/A */
0N/A public static final String DOMAIN = "DefaultDomain";
0N/A
0N/A /**
0N/A * The name of the JMX specification implemented by this product.
0N/A * <BR>
0N/A * The value is <CODE>Java Management Extensions</CODE>.
0N/A */
0N/A public static final String JMX_SPEC_NAME = "Java Management Extensions";
0N/A
0N/A /**
0N/A * The version of the JMX specification implemented by this product.
0N/A * <BR>
1790N/A * The value is <CODE>1.4</CODE>.
0N/A */
1790N/A public static final String JMX_SPEC_VERSION = "1.4";
0N/A
0N/A /**
0N/A * The vendor of the JMX specification implemented by this product.
0N/A * <BR>
2997N/A * The value is <CODE>Oracle Corporation</CODE>.
0N/A */
2997N/A public static final String JMX_SPEC_VENDOR = "Oracle Corporation";
0N/A
0N/A /**
0N/A * The name of this product implementing the JMX specification.
0N/A * <BR>
0N/A * The value is <CODE>JMX</CODE>.
0N/A */
0N/A public static final String JMX_IMPL_NAME = "JMX";
0N/A
0N/A /**
0N/A * The name of the vendor of this product implementing the
0N/A * JMX specification.
0N/A * <BR>
2997N/A * The value is <CODE>Oracle Corporation</CODE>.
0N/A */
2997N/A public static final String JMX_IMPL_VENDOR = "Oracle Corporation";
0N/A}