1 22 package org.jboss.test.marshaliiop.ejb; 23 24 import org.jboss.logging.Logger; 25 26 import javax.ejb.CreateException ; 27 import javax.ejb.SessionBean ; 28 import javax.ejb.SessionContext ; 29 30 33 public class MarshalSessionBean implements SessionBean 34 { 35 private static final Logger log = Logger.getLogger(MarshalSessionBean.class); 36 37 public MarshalSessionBean() 38 { 39 } 40 41 public int testMethod(Object payload) 42 { 43 return 0; 44 } 45 46 48 public void setSessionContext(SessionContext ctx) 49 { 50 } 51 52 public void ejbCreate() throws CreateException 53 { 54 } 55 56 public void ejbRemove() 57 { 58 } 59 60 public void ejbActivate() 61 { 62 } 63 64 public void ejbPassivate() 65 { 66 } 67 } 68 | Popular Tags |