KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > cmp2 > idxandusersql > ejb > DBIndexTestLocal


1 /*
2  * Generated by XDoclet - Do not edit!
3  */

4 package org.jboss.test.cmp2.idxandusersql.ejb;
5
6 /**
7  * Local interface for DBIndexTest.
8  */

9 public interface DBIndexTestLocal
10    extends javax.ejb.EJBLocalObject JavaDoc
11 {
12
13    public void setPKey( java.lang.String JavaDoc pKey ) ;
14
15    public java.lang.String JavaDoc getPKey( ) ;
16
17    /**
18     * 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.
19     * @todo set the dbindex property here with a modern xdoclet* */

20    public java.lang.String JavaDoc getFoo( ) ;
21
22    /**
23     * This field gets an index via the <post-create-sql/> setting in jbosscmp-jdbc.xml file
24     * @todo set the dbindex property here with a modern xdoclet */

25    public java.lang.String JavaDoc getBar( ) ;
26
27    /**
28     * This field is not indexed
29     */

30    public java.lang.String JavaDoc getBaz( ) ;
31
32    public java.util.Collection JavaDoc getCmr1s( ) ;
33
34    public void setCmr1s( java.util.Collection JavaDoc cmr1s ) ;
35
36    public java.util.Collection JavaDoc getCmr2s( ) ;
37
38    public void setCmr2s( java.util.Collection JavaDoc cmr2s ) ;
39
40 }
41
Popular Tags