KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > interfaces > CustomerHome


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

4 package test.interfaces;
5
6 /**
7  * Home interface for Customer.
8  * @xdoclet-generated at 16-04-05
9  * @copyright The XDoclet Team
10  * @author XDoclet
11  * @version 1.2.3
12  */

13 public interface CustomerHome
14    extends test.interfaces.PersonHome
15 {
16    public static final String JavaDoc COMP_NAME="java:comp/env/ejb/Customer";
17    public static final String JavaDoc JNDI_NAME="blah/bank/Customer";
18
19    public test.interfaces.Customer create(test.interfaces.CustomerNormalValue data)
20       throws javax.ejb.CreateException JavaDoc,java.rmi.RemoteException JavaDoc;
21
22    public test.interfaces.Customer findByPrimaryKey(test.interfaces.CustomerPK pk)
23       throws javax.ejb.FinderException JavaDoc,java.rmi.RemoteException JavaDoc;
24
25    public void copyToArchive(test.interfaces.CustomerPK pk)
26       throws java.rmi.RemoteException JavaDoc;
27
28 }
29
Popular Tags