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

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

Introduction

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

Prototype

public void setProxyInterface(Class<?> proxyInterface) 

Source Link

Document

Set the interface that the generated proxy will implement.

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 ww  .j  av  a 2  s .  c om*/
    factory.setProxyInterface(interfaceType);
    factory.setServer(connectionFactory.getObject());
    factory.afterPropertiesSet();
    return factory.getObject();
}