MBeanServerDelegateMBean.java revision 2362
1381N/A/*
1381N/A * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved.
1381N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
142N/A *
142N/A * This code is free software; you can redistribute it and/or modify it
142N/A * under the terms of the GNU General Public License version 2 only, as
142N/A * published by the Free Software Foundation. Oracle designates this
142N/A * particular file as subject to the "Classpath" exception as provided
142N/A * by Oracle in the LICENSE file that accompanied this code.
142N/A *
142N/A * This code is distributed in the hope that it will be useful, but WITHOUT
142N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
142N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
142N/A * version 2 for more details (a copy is included in the LICENSE file that
142N/A * accompanied this code).
142N/A *
1381N/A * You should have received a copy of the GNU General Public License version
142N/A * 2 along with this work; if not, write to the Free Software Foundation,
142N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
142N/A *
479N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
479N/A * or visit www.oracle.com if you need additional information or have any
479N/A * questions.
142N/A */
142N/A
142N/Apackage javax.management;
142N/A
1381N/A
1381N/A/**
1381N/A * Defines the management interface of an object of class MBeanServerDelegate.
1381N/A *
142N/A * @since 1.5
142N/A */
142N/Apublic interface MBeanServerDelegateMBean {
142N/A
479N/A /**
479N/A * Returns the MBean server agent identity.
479N/A *
142N/A * @return the agent identity.
142N/A */
142N/A public String getMBeanServerId();
479N/A
479N/A /**
479N/A * Returns the full name of the JMX specification implemented
142N/A * by this product.
142N/A *
142N/A * @return the specification name.
142N/A */
479N/A public String getSpecificationName();
479N/A
479N/A /**
142N/A * Returns the version of the JMX specification implemented
142N/A * by this product.
142N/A *
142N/A * @return the specification version.
142N/A */
479N/A public String getSpecificationVersion();
479N/A
1381N/A /**
479N/A * Returns the vendor of the JMX specification implemented
142N/A * by this product.
142N/A *
142N/A * @return the specification vendor.
142N/A */
142N/A public String getSpecificationVendor();
142N/A
142N/A /**
142N/A * Returns the JMX implementation name (the name of this product).
142N/A *
142N/A * @return the implementation name.
142N/A */
142N/A public String getImplementationName();
142N/A
142N/A /**
142N/A * Returns the JMX implementation version (the version of this product).
*
* @return the implementation version.
*/
public String getImplementationVersion();
/**
* Returns the JMX implementation vendor (the vendor of this product).
*
* @return the implementation vendor.
*/
public String getImplementationVendor();
}