Package org.goat.caprabank.shared.entity

Examples of org.goat.caprabank.shared.entity.BankTransaction


        log.warning("Insufficient funds for tranfer attempted by user " + currentUser.username + " (amount=" + formatAmount(amount) + ", balance=" + formatAmount(currentUser.balance) + ").");
        throw new CaprabankException("Insufficient funds.");
      }
    }

    BankTransaction transferTransaction = new BankTransaction();
    transferTransaction.transactionId = generateId();
    transferTransaction.timestamp = new Date();
    transferTransaction.fromAccount = currentUser.accountNum;
    transferTransaction.toAccount = toAccount;
    transferTransaction.amount = amount;
View Full Code Here

TOP

Related Classes of org.goat.caprabank.shared.entity.BankTransaction

Copyright © 2018 www.massapicom. 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.