01 /*
02 * Created on Jun 28, 2004
03 *
04 * To change the template for this generated file go to
05 * Window - Preferences - Java - Code Generation - Code and Comments
06 */
07 package biz.xsoftware.examples.basic;
08
09 /**
10 * Interface to what would normally be a real Credit Authorization Service.
11 *
12 * @author Dean Hiller
13 */
14 public interface CreditAuthorizationSvc {
15
16
17 public void takeMoney(String user, double usDollars);
18 public void returnMoney(String user, double usDollars);
19
20 }
|