1 package transactions;2 3 import dinamica.Recordset;4 5 /**6 * Interface definition for SOAP webservice7 * <br><br>8 * Creation date: 13/05/20059 * (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 ICustomerInfo15 {16 17 /**18 * Return customer basic information19 * @param custID Customer ID20 * @return Recordset containing one record21 * @throws Throwable If customer not found or an exception occurs22 */23 Recordset getCustomer(String custID) throws Throwable ;24 25 }26