List of usage examples for org.springframework.jmx.access MBeanProxyFactoryBean setProxyInterface
public void setProxyInterface(Class<?> proxyInterface)
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(); }