1 22 package org.jboss.ejb3.test.regression.ejbthree249; 23 24 import javax.ejb.EJB ; 25 import org.jboss.annotation.ejb.Management; 26 import org.jboss.annotation.ejb.Service; 27 28 34 @Service 35 @Management(MyManagement.class) 36 public class MyServiceBean implements MyManagement, MyRemote 37 { 38 @EJB Session injected; 39 40 public void doit() 41 { 42 43 } 44 45 public void create() 46 { 47 48 } 49 } 50 | Popular Tags |