1 4 package org.jboss.test.cmp2.fkstackoverflow.ejb; 5 6 9 public abstract class ChildCMP 10 extends org.jboss.test.cmp2.fkstackoverflow.ejb.ChildEntityBean 11 implements javax.ejb.EntityBean 12 { 13 14 public void ejbLoad() 15 { 16 super.ejbLoad(); 17 } 18 19 public void ejbStore() 20 { 21 super.ejbStore(); 22 } 23 24 public void ejbActivate() 25 { 26 super.ejbActivate(); 27 } 28 29 public void ejbPassivate() 30 { 31 super.ejbPassivate(); 32 33 } 34 35 public void setEntityContext(javax.ejb.EntityContext ctx) 36 { 37 super.setEntityContext(ctx); 38 } 39 40 public void unsetEntityContext() 41 { 42 super.unsetEntityContext(); 43 } 44 45 public void ejbRemove() throws javax.ejb.RemoveException 46 { 47 super.ejbRemove(); 48 49 } 50 51 public abstract java.lang.Long getId() ; 52 53 public abstract void setId( java.lang.Long id ) ; 54 55 public abstract java.lang.String getFirstName() ; 56 57 public abstract void setFirstName( java.lang.String firstName ) ; 58 59 public abstract java.lang.Long getSimpleParentId() ; 60 61 public abstract void setSimpleParentId( java.lang.Long simpleParentId ) ; 62 63 public abstract java.lang.Long getComplexParentId1() ; 64 65 public abstract void setComplexParentId1( java.lang.Long complexParentId1 ) ; 66 67 public abstract java.lang.Long getComplexParentId2() ; 68 69 public abstract void setComplexParentId2( java.lang.Long complexParentId2 ) ; 70 71 } 72 | Popular Tags |