/* * Generated by XDoclet - Do not edit! */ package org.jboss.test.cmp2.fkstackoverflow.ejb; /** * CMP layer for SimpleParent. */ public abstract class SimpleParentCMP extends org.jboss.test.cmp2.fkstackoverflow.ejb.SimpleParentBean implements javax.ejb.EntityBean { 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.Long getId() ; public abstract void setId( java.lang.Long id ) ; public abstract java.lang.String getFirstName() ; public abstract void setFirstName( java.lang.String firstName ) ; }