Example usage for org.springframework.jmx.access MBeanProxyFactoryBean MBeanProxyFactoryBean

List of usage examples for org.springframework.jmx.access MBeanProxyFactoryBean MBeanProxyFactoryBean

Introduction

In this page you can find the example usage for org.springframework.jmx.access MBeanProxyFactoryBean MBeanProxyFactoryBean.

Prototype

MBeanProxyFactoryBean

Source Link

Usage

From source file:org.springframework.batch.sample.launch.RemoteLauncherTests.java

private static Object getMBean(MBeanServerConnectionFactoryBean connectionFactory, String objectName,
        Class<?> interfaceType) throws MalformedObjectNameException {
    MBeanProxyFactoryBean factory = new MBeanProxyFactoryBean();
    factory.setObjectName(objectName);/*from w  w w. j av  a2  s .c om*/
    factory.setProxyInterface(interfaceType);
    factory.setServer(connectionFactory.getObject());
    factory.afterPropertiesSet();
    return factory.getObject();
}