⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sunjmxmbeanserver.java

📁 Mobile 应用程序使用 Java Micro Edition (Java ME) 平台
💻 JAVA
字号:
/* * @(#)SunJmxMBeanServer.java	1.30 05/11/17 *  * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.jmx.mbeanserver;import javax.management.MBeanServer;import javax.management.MBeanServerDelegate;import com.sun.jmx.interceptor.MBeanServerInterceptor;/** * Extends the MBeanServer and MBeanServerInterceptor interface to  * provide methods for getting the MetaData and MBeanServerInstantiator  * objects associated with an MBeanServer. * * @since 1.5 * @since.unbundled JMX RI 1.2 */public interface SunJmxMBeanServer     extends MBeanServerInterceptor, MBeanServer {    /**     * Return the MBeanInstantiator associated to this MBeanServer.     * @exception UnsupportedOperationException if      *            {@link MBeanServerInterceptor}s     *            are not enabled on this object.     * @see #interceptorsEnabled     */    public MBeanInstantiator getMBeanInstantiator();    /**     * Tell whether {@link MBeanServerInterceptor}s are enabled on this     * object.     * @return <code>true</code> if {@link MBeanServerInterceptor}s are     *         enabled.     * @see #getMBeanServerInterceptor     * @see #setMBeanServerInterceptor     * @see #getMBeanInstantiator     * @see com.sun.jmx.mbeanserver.JmxMBeanServerBuilder     **/    public boolean interceptorsEnabled();    /**     * Return the MBeanServerInterceptor.     * @exception UnsupportedOperationException if      *            {@link MBeanServerInterceptor}s     *            are not enabled on this object.     * @see #interceptorsEnabled     **/    public MBeanServerInterceptor getMBeanServerInterceptor();    /**     * Set the MBeanServerInterceptor.     * @exception UnsupportedOperationException if      *            {@link MBeanServerInterceptor}s     *            are not enabled on this object.     * @see #interceptorsEnabled     **/    public void setMBeanServerInterceptor(MBeanServerInterceptor interceptor);    /**     * <p>Return the MBeanServerDelegate representing the MBeanServer.     * Notifications can be sent from the MBean server delegate using     * the method {@link MBeanServerDelegate#sendNotification}     * in the returned object.</p>     *     * @since.unbundled JMX RI 1.2     */    public MBeanServerDelegate getMBeanServerDelegate();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -