Example usage for javax.management StandardMBean subclass-usage

List of usage examples for javax.management StandardMBean subclass-usage

Introduction

In this page you can find the example usage for javax.management StandardMBean subclass-usage.

Usage

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.sonatype.nexus.apachehttpclient.PoolingClientConnectionManagerMBeanImpl.java

/**
 * Default {@link PoolingClientConnectionManagerMBean} implementation.
 *
 * @since 2.2
 */
class PoolingClientConnectionManagerMBeanImpl extends StandardMBean implements PoolingClientConnectionManagerMBean {

From source file org.sonatype.nexus.internal.httpclient.PoolingClientConnectionManagerMBeanImpl.java

/**
 * Default {@link PoolingClientConnectionManagerMBean} implementation.
 *
 * @since 2.2
 */
public class PoolingClientConnectionManagerMBeanImpl extends StandardMBean

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.apache.james.sieverepository.lib.SieveRepositoryManagement.java

public class SieveRepositoryManagement extends StandardMBean implements SieveRepositoryManagementMBean {
    private static final Logger LOGGER = LoggerFactory.getLogger(SieveRepositoryManagement.class);

    private SieveRepository sieveRepository;

    public SieveRepositoryManagement() throws NotCompliantMBeanException {

From source file org.opendaylight.infrautils.diagstatus.internal.DiagStatusServiceMBeanImpl.java

@Singleton
@Service(classes = DiagStatusServiceMBean.class)
public class DiagStatusServiceMBeanImpl extends StandardMBean
        implements DiagStatusServiceMBean, SystemReadyListener {

    private static final String JMX_OBJECT_NAME = "org.opendaylight.infrautils.diagstatus:type=SvcStatus";

From source file org.codice.ddf.admin.core.impl.SystemPropertiesAdmin.java

public class SystemPropertiesAdmin extends StandardMBean implements SystemPropertiesAdminMBean {

    public static final String HTTP_PROTOCOL = "http://";
    public static final String HTTPS_PROTOCOL = "https://";
    private static final String DEFAULT_LOCALHOST_DN = "localhost.local";
    private static final String KARAF_ETC = "karaf.etc";

From source file org.codice.ddf.admin.core.impl.AdminConsoleService.java

/**
 * This class provides convenience methods for interacting with OSGi/Felix ConfigurationAdmin
 * services.
 */
public class AdminConsoleService extends StandardMBean implements AdminConsoleServiceMBean {