Package org.sodatest.examples.basic.java

Examples of org.sodatest.examples.basic.java.BankAccountJava.withdraw()


    @Override
    public void executeEvent() {
        BankAccountJava account = service.get(accountName);
        if (account != null) {
            account.withdraw(amount);
        } else {
            throw new RuntimeException("Unknown account");
        }
    }
}
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.