1 14 15 package mx4j.tools.adaptor.http; 16 17 18 import java.io.IOException ; 19 import javax.management.JMException ; 20 import javax.management.MBeanServer ; 21 import javax.xml.parsers.DocumentBuilder ; 22 23 import org.w3c.dom.Document ; 24 25 26 31 32 public interface HttpCommandProcessor 33 34 { 35 36 37 44 45 public Document executeRequest(HttpInputStream in) throws IOException , JMException ; 46 47 48 51 52 public void setMBeanServer(MBeanServer server); 53 54 55 58 59 public void setDocumentBuilder(DocumentBuilder builder); 60 61 } 62 63 | Popular Tags |