1 22 package org.jboss.mx.standardmbean; 23 24 import javax.management.NotCompliantMBeanException ; 25 26 27 33 public class StandardMBeanFactoryImpl implements StandardMBeanDelegateFactory 34 { 35 public StandardMBeanDelegate createStandardMBean(Object implementation, Class mbeanInterface) throws NotCompliantMBeanException  36 { 37 return new StandardMBeanImpl(implementation, mbeanInterface); 38 } 39 } 40 | Popular Tags |