1 22 package org.jboss.ejb3.test.service; 23 24 import org.jboss.annotation.ejb.Management; 25 import org.jboss.annotation.ejb.Management; 26 27 31 public interface ServiceSixManagement 32 { 33 String jmxOperation(String s); 34 String [] jmxOperation(String [] s); 35 int getAttribute(); 36 void setAttribute(int i); 37 int getSomeAttr(); 38 void setSomeAttr(int i); 39 int getOtherAttr(); 40 void setOtherAttr(int i); 41 void setWriteOnly(int i); 42 int getReadOnly(); 43 44 void create() throws Exception ; 45 void start() throws Exception ; 46 void stop(); 47 void destroy(); 48 } 49 | Popular Tags |