1 22 package org.jboss.ejb3.test.standalone.servicepojo; 23 24 import org.jboss.annotation.ejb.Management; 25 26 32 @Management 33 public interface ServiceOneManagement 34 { 35 void setAttribute(int attribute); 36 int getAttribute(); 37 String sayHello(String name); 38 39 void create() throws Exception ; 40 void start() throws Exception ; 41 void stop(); 42 void destroy(); 43 } 44 | Popular Tags |