Teller.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.bank.interfaces; import java.rmi.*; import javax.ejb.*; import javax.naming.*; /** * * @author Rickard Oberg * @author $Author: starksm $ * @version $Revision: 1.2.32.1 $ */ public interface Teller extends EJBObject { // Constants ----------------------------------------------------- // Attributes ---------------------------------------------------- // Static -------------------------------------------------------- // Constructors -------------------------------------------------- // Public -------------------------------------------------------- public void transfer(Account from, Account to, float amount) throws RemoteException, BankException; public Account createAccount(Customer customer, float balance) throws RemoteException, BankException; public Account getAccount(Customer customer, float balance) throws RemoteException, BankException; public Customer getCustomer(String name) throws RemoteException, BankException; public void transferTest(Account from, Account to, float amount, int iter) throws java.rmi.RemoteException, BankException; } /* * $Id: Teller.java,v 1.2.32.1 2005/04/06 16:25:05 starksm Exp $ * Currently locked by:$Locker: $ * Revision: * $Log: Teller.java,v $ * Revision 1.2.32.1 2005/04/06 16:25:05 starksm * Fix the license header * * Revision 1.2 2001/01/07 23:14:36 peter * Trying to get JAAS to work within test suite. * * Revision 1.1.1.1 2000/06/21 15:52:38 oberg * Initial import of jBoss test. This module contains CTS tests, some simple examples, and small bean suites. * * * */
Teller.java |