KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > transactions > ICustomerInfo


1 package transactions;
2
3 import dinamica.Recordset;
4
5 /**
6  * Interface definition for SOAP webservice
7  * <br><br>
8  * Creation date: 13/05/2005
9  * (c) 2005 Martin Cordova<br>
10  * This code is released under the LGPL license<br>
11  * Dinamica Framework - http://www.martincordova.com<br>
12  * @author Martin Cordova (dinamica@martincordova.com)
13  */

14 public interface ICustomerInfo
15 {
16     
17     /**
18      * Return customer basic information
19      * @param custID Customer ID
20      * @return Recordset containing one record
21      * @throws Throwable If customer not found or an exception occurs
22      */

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