KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hessian > demo > ICustomer


1 package hessian.demo;
2
3 import dinamica.*;
4
5 /**
6  * ICustomer
7  * Creation date: 01/06/2004<br>
8  * @author Martin Cordova dinamica@martincordova.com
9  * <br>(c) 2004 Martin Cordova y Asociados
10  * <br>http://www.martincordova.com
11  */

12 public interface ICustomer
13 {
14
15     /**
16      * Returns customer information
17      * @param custID Customer ID
18      * @return Recordset containing customer data and its orders,
19      * in turn each order contains another recordset containing the order's detail
20      * @throws Throwable
21      */

22     public Recordset getCustomer(String JavaDoc custID) throws Throwable JavaDoc;
23
24 }
25
Popular Tags