1 29 30 package com.caucho.jmx.remote; 31 32 import javax.management.JMException ; 33 import javax.management.MBeanInfo ; 34 import java.io.IOException ; 35 36 39 public interface RemoteJMX { 40 43 public MBeanInfo getMBeanInfo(String objectName) 44 throws JMException , IOException ; 45 46 49 public Object getAttribute(String objectName, String attributeName) 50 throws JMException , IOException ; 51 } 52 | Popular Tags |