/* * Generated by XDoclet - Do not edit! */ package org.jboss.test.cmp2.fkmapping.ejb; /** * CMP layer for ChildUPK. */ public abstract class ChildUPKCMP extends org.jboss.test.cmp2.fkmapping.ejb.ChildCMPUnknownPKBean implements javax.ejb.EntityBean { /** * Generated ejbPostCreate for corresponding ejbCreate method. * * @see #ejbCreate(java.lang.String firstName) */ public void ejbPostCreate(java.lang.String firstName) { } public void ejbLoad() { super.ejbLoad(); } public void ejbStore() { super.ejbStore(); } public void ejbActivate() { super.ejbActivate(); } public void ejbPassivate() { super.ejbPassivate(); } public void setEntityContext(javax.ejb.EntityContext ctx) { super.setEntityContext(ctx); } public void unsetEntityContext() { super.unsetEntityContext(); } public void ejbRemove() throws javax.ejb.RemoveException { super.ejbRemove(); } public abstract java.lang.String getFirstName() ; public abstract void setFirstName( java.lang.String firstName ) ; }