KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > interfaces > Teller


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

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

13 public interface Teller
14    extends javax.ejb.EJBObject JavaDoc
15 {
16    /**
17     * Transfer money between accounts.
18     */

19    public void transfer( test.interfaces.Account from,test.interfaces.Account to,float amount )
20       throws java.rmi.RemoteException JavaDoc;
21
22    /**
23     * Deposit account.
24     */

25    public void deposit( test.interfaces.Account account,float amount )
26       throws java.rmi.RemoteException JavaDoc;
27
28 }
29
Popular Tags