1 22 23 package org.jboss.ejb3.test.localcall; 24 25 import javax.ejb.Remote ; 26 import javax.ejb.Stateful ; 27 28 import org.jboss.annotation.ejb.Clustered; 29 30 35 @Stateful  36 @Clustered 37 @Remote (StatefulClustered.class) 38 public class StatefulClusteredBean implements StatefulClustered, java.io.Serializable  39 { 40 public void test() 41 { 42 43 } 44 45 } 46 | Popular Tags |