1 22 package org.jboss.ejb3.test.service; 23 24 28 public interface ServiceOneManagement 29 { 30 String jmxOperation(String s); 31 String [] jmxOperation(String [] s); 32 int getAttribute(); 33 void setAttribute(int i); 34 int getSomeAttr(); 35 void setSomeAttr(int i); 36 int getOtherAttr(); 37 void setOtherAttr(int i); 38 void setWriteOnly(int i); 39 int getReadOnly(); 40 41 void create() throws Exception ; 42 void start() throws Exception ; 43 void stop(); 44 void destroy(); 45 } 46 | Popular Tags |