package examples.ejb20.basic.containerManaged;

//
// This file was automatically generated by EJBGen 2.0
//


import java.rmi.RemoteException;
import javax.ejb.EJBObject;

public interface Account extends EJBObject {
  public String accountType()     throws RemoteException;

  public double withdraw(double amount)     throws RemoteException, examples.ejb20.basic.containerManaged.ProcessingErrorException;

  public double balance()     throws RemoteException;

  public double deposit(double amount)     throws RemoteException;

}