1 22 package org.jboss.ejb3.test.asynchronous; 23 24 import javax.ejb.Local ; 25 import javax.ejb.Remote ; 26 import org.jboss.annotation.ejb.Service; 27 28 32 @Service 33 @Remote (ServiceRemote.class) 34 @Local (ServiceLocal.class) 35 public class ServiceBean implements ServiceRemote, ServiceLocal 36 { 37 public int method(int i) 38 { 39 System.out.println("method(" + i + ")"); 40 return i; 41 } 42 } 43 | Popular Tags |