1 4 package test.bea.cmr; 5 6 13 public abstract class SubscriberCMP 14 extends test.bea.cmr.SubscriberBean 15 implements javax.ejb.EntityBean 16 { 17 18 public test.bea.cmr.SubscriberData getData() 19 { 20 test.bea.cmr.SubscriberData dataHolder = null; 21 try 22 { 23 dataHolder = new test.bea.cmr.SubscriberData(); 24 25 dataHolder.setBoid( getBoid() ); 26 27 } 28 catch (RuntimeException e) 29 { 30 throw new javax.ejb.EJBException (e); 31 } 32 33 return dataHolder; 34 } 35 36 public void ejbLoad() throws javax.ejb.EJBException , java.rmi.RemoteException 37 { 38 super.ejbLoad(); 39 } 40 41 public void ejbStore() throws javax.ejb.EJBException , java.rmi.RemoteException 42 { 43 super.ejbStore(); 44 } 45 46 public void ejbActivate() throws javax.ejb.EJBException , java.rmi.RemoteException 47 { 48 super.ejbActivate(); 49 } 50 51 public void ejbPassivate() throws javax.ejb.EJBException , java.rmi.RemoteException 52 { 53 super.ejbPassivate(); 54 55 } 56 57 public void setEntityContext(javax.ejb.EntityContext ctx) throws javax.ejb.EJBException , java.rmi.RemoteException 58 { 59 super.setEntityContext(ctx); 60 } 61 62 public void unsetEntityContext() throws javax.ejb.EJBException , java.rmi.RemoteException 63 { 64 super.unsetEntityContext(); 65 } 66 67 public void ejbRemove() throws javax.ejb.EJBException , java.rmi.RemoteException , javax.ejb.RemoveException 68 { 69 super.ejbRemove(); 70 71 } 72 73 74 75 76 77 public abstract java.lang.String getBoid() ; 78 79 public abstract void setBoid( java.lang.String boid ) ; 80 81 } 82 | Popular Tags |