Examples of GiroKonto


Examples of distrsys.rmi.bank.common.GiroKonto

  public GiroKonto erzeuge_giro_konto(String accountNumber, long creditLimit) throws BankException, RemoteException {
    Konto konto = finde(accountNumber);
    if(konto != null)
      throw new BankException("account already exists!");
   
    GiroKonto giroKonto = new GiroKontoImpl(accountNumber, creditLimit);
    kontos.put(accountNumber, giroKonto);
   
    return giroKonto;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.