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