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.mule.module.management.mbean.FlowConstructStats.java

/**
 * A concrete class that holds management information for a Mule managed flow.
 */
public class FlowConstructStats implements FlowConstructStatsMBean, MBeanRegistration {
    private final FlowConstructStatistics statistics;

From source file org.mule.module.management.agent.ClassloaderSwitchingMBeanWrapper.java

/**
 * Ensures any external jmx invocation (like e.g. remote) is executed with a correct application
 * classloader (otherwise a bootstrap classloader is used by default for platform mbean server). Note
 * the irony - extends StandardMBean, but StandardMBean is not your 'standard mbean', but rather a
 * special kind of the DynamicMBean which generates attributes/operations based on the passed in
 * interface (via reflection).

From source file org.mule.module.management.mbean.ServiceStats.java

/**
 * <code>ServiceStats</code> TODO
 */
@Deprecated
public class ServiceStats extends FlowConstructStats implements ServiceStatsMBean, MBeanRegistration {

From source file org.skfiy.typhon.AbstractMBeanLifecycle.java

/**
 * MBeanLifecycle.{@code MBeanRegistration}?.
 * ??MBeanServer.
 *
 * @author Kevin Zou <kevinz@skfiy.org>
 */

From source file org.mule.module.management.mbean.FlowConstructService.java

/**
 * <code>FlowConstructService</code> exposes service information about a Mule Managed
 * flow construct.
 */
public class FlowConstructService implements FlowConstructServiceMBean, MBeanRegistration, FlowConstructStatsMBean {
    private static Log LOGGER = LogFactory.getLog(FlowConstructService.class);

From source file org.mule.module.management.mbean.ServiceService.java

/**
 * <code>ServiceService</code> exposes service information about a Mule Managed
 * service.
 */
public class ServiceService extends FlowConstructService
        implements ServiceServiceMBean, MBeanRegistration, ServiceStatsMBean {

From source file org.apache.ode.utils.jmx.SimpleMBean.java

/**
 * An extension of {@link StandardMBean} with common features such as registeration,
 * notification, sequence generation, etc. "built-in."
 */
public abstract class SimpleMBean extends StandardMBean implements MBeanRegistration, NotificationEmitter {
    private static final Log __log = LogFactory.getLog(SimpleMBean.class);

From source file org.openspaces.focalserver.FocalServer.java

/**
 *
 */
public class FocalServer implements NotificationListener, MBeanRegistration, FocalServerMBean {
    public final static Logger LOGGER = Logger.getLogger(FocalServer.class.getName());

From source file org.jolokia.backend.MBeanServerHandler.java

/**
 * Handler for finding and merging various MBeanServers locally when used
 * as an agent.
 *
 * @author roland
 * @since Jun 15, 2009

From source file org.rhq.enterprise.server.core.CustomJaasDeploymentService.java

/**
 * Deploy the JAAS login modules that are configured. The JDBC login module is always deployed, however, the LDAP login
 * module is only deployed if LDAP is enabled in the RHQ configuration.
 */
public class CustomJaasDeploymentService implements CustomJaasDeploymentServiceMBean, MBeanRegistration {
    private static final String AUTH_METHOD = "addAppConfig";