Example usage for javax.management MBeanRegistration interface-usage

List of usage examples for javax.management MBeanRegistration interface-usage

Introduction

In this page you can find the example usage for javax.management MBeanRegistration interface-usage.

Usage

From source file org.rhq.enterprise.server.scheduler.SchedulerService.java

/**
 * Scheduler MBean service that simply wraps the Quartz scheduler.
 */
public class SchedulerService implements SchedulerServiceMBean, MBeanRegistration {
    private Log log = LogFactory.getLog(SchedulerService.class);

From source file org.jboss.web.tomcat.tc5.StandardService.java

/**
 * Standard implementation of the <code>Service</code> interface.  The
 * associated Container is generally an instance of Engine, but this is
 * not required.
 * <p/>
 * This version does not start the connectors in the start method so that

From source file org.apache.jk.core.JkHandler.java

/**
 *
 * @author Costin Manolache
 */
public class JkHandler implements MBeanRegistration, NotificationListener {
    public static final int OK = 0;

From source file com.sun.grizzly.http.jk.core.JkHandler.java

/**
 *
 * @author Costin Manolache
 */
public class JkHandler implements MBeanRegistration, NotificationListener {
    public static final int OK = 0;

From source file org.browsermob.proxy.jetty.util.jmx.ModelMBeanImpl.java

/** Model MBean Implementation.
 * This implementation of the JMX Model MBean API is designed to allow
 * easy creation of Model MBeans. From minimal descriptions of
 * operations and attributes, reflection is used to determine the full
 * signature and ResourceBundles are used to determine other meta data.
 *

From source file ie.deri.wsmx.core.management.httpadapter.HttpAdapter.java

/**
 * HttpAdapter sets the basic adapter listening for HTTP requests
 *
 * <pre>
 * Created on Feb 11, 2005
 * Committed by $$Author: haselwanter $$

From source file net.lightbody.bmp.proxy.jetty.util.jmx.ModelMBeanImpl.java

/** Model MBean Implementation.
 * This implementation of the JMX Model MBean API is designed to allow
 * easy creation of Model MBeans. From minimal descriptions of
 * operations and attributes, reflection is used to determine the full
 * signature and ResourceBundles are used to determine other meta data.
 *

From source file org.apache.catalina.valves.ValveBase.java

/**
 * Convenience base class for implementations of the <b>Valve</b> interface.
 * A subclass <strong>MUST</strong> implement an <code>invoke()</code>
 * method to provide the required functionality, and <strong>MAY</strong>
 * implement the <code>Lifecycle</code> interface to provide configuration
 * management and lifecycle support.

From source file org.apache.jk.server.JkMain.java

/** Main class used to startup and configure jk. It manages the conf/jk2.properties file
 *  and is the target of JMX proxy.
 *
 *  It implements a policy of save-on-change - whenever a property is changed at
 *  runtime the jk2.properties file will be overriden. 
 *

From source file org.apache.catalina.core.StandardService.java

/**
 * Standard implementation of the <code>Service</code> interface.  The
 * associated Container is generally an instance of Engine, but this is
 * not required.
 *
 * @author Craig R. McClanahan