CMR1Bean.java |
/*************************************** * * * JBoss: The OpenSource J2EE WebOS * * * * Distributable under LGPL license. * * See terms of license at gnu.org. * * * ***************************************/ package org.jboss.test.cmp2.idxandusersql.ejb; import javax.ejb.EntityBean; /** * Test the dbindex feature * @author heiko.rupp@cellent.de * @version $Revision: 1.2 $ * * @ejb.bean name="CMR1" * type="CMP" * cmp-version="2.x" * view-type="local" * primkey-field="pKey" * * @ejb.util generate="false" * * @ejb.persistence table-name = "CMR1" * * @jboss.persistence * create-table = "true" * remove-table = "true" * */ public abstract class CMR1Bean implements EntityBean { /** * We don't call them, just have them here to * satisfy the cmp-engine * @ejb.create-method */ public String ejbCreate() throws javax.ejb.CreateException { return null; } public void ejbPostCreate() { } /** * @ejb.interface-method * @param pKey */ public abstract void setPKey(String pKey); /** * @ejb.interface-method * @ejb.persistent-field */ public abstract String getPKey(); /** * This field gets a <dbindex/> that we want to * look up in the database to see if the index * was really created on the file. * @ejb.interface-method * @ejb.persistent-field * @todo set the dbindex property here with a modern xdoclet* */ public abstract String getFoo1(); /** * This one is not indexed * @ejb.interface-method * @ejb.persistent-field */ public abstract String getBar1(); }
CMR1Bean.java |