1 4 package org.jboss.test.cmp2.fkmapping.ejb; 5 6 9 public abstract class ChildUPKCMP 10 extends org.jboss.test.cmp2.fkmapping.ejb.ChildCMPUnknownPKBean 11 implements javax.ejb.EntityBean 12 { 13 14 19 public void ejbPostCreate(java.lang.String firstName) 20 { 21 } 22 23 public void ejbLoad() 24 { 25 super.ejbLoad(); 26 } 27 28 public void ejbStore() 29 { 30 super.ejbStore(); 31 } 32 33 public void ejbActivate() 34 { 35 super.ejbActivate(); 36 } 37 38 public void ejbPassivate() 39 { 40 super.ejbPassivate(); 41 42 } 43 44 public void setEntityContext(javax.ejb.EntityContext ctx) 45 { 46 super.setEntityContext(ctx); 47 } 48 49 public void unsetEntityContext() 50 { 51 super.unsetEntityContext(); 52 } 53 54 public void ejbRemove() throws javax.ejb.RemoveException 55 { 56 super.ejbRemove(); 57 58 } 59 60 public abstract java.lang.String getFirstName() ; 61 62 public abstract void setFirstName( java.lang.String firstName ) ; 63 64 } 65 | Popular Tags |