DBIndexTestBean.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 java.util.Collection; import javax.ejb.EntityBean; /** * Test the dbindex feature * @author heiko.rupp@cellent.de * @version $Revision: 1.2 $ * * @ejb.bean name="DBIndexTest" * type="CMP" * cmp-version="2.x" * view-type="local" * primkey-field="pKey" * * @ejb.util generate="false" * * @ejb.persistence table-name = "DBIndexTest" * * @jboss.persistence * create-table = "true" * remove-table = "true" * */ public abstract class DBIndexTestBean 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 getFoo(); /** * This field gets an index via the * <post-create-sql/> setting in jbosscmp-jdbc.xml file * @ejb.interface-method * @ejb.persistent-field * @todo set the dbindex property here with a modern xdoclet */ public abstract String getBar(); /** * This field is not indexed * @ejb.interface-method * @ejb.persistent-field */ public abstract String getBaz(); // // 1-many relation to CMR1 // the foreign key on CMR1 gets an index /** * @ejb.interface-method */ public abstract Collection getCmr1s(); /** * @ejb.interface-method */ public abstract void setCmr1s(Collection cmr1s); // // many-many relation to CMR2 // /** * @ejb.interface-method */ public abstract Collection getCmr2s(); /** * @ejb.interface-method */ public abstract void setCmr2s(Collection cmr2s); }
DBIndexTestBean.java |