Package org.prevayler.demos.memento.commands

Examples of org.prevayler.demos.memento.commands.Transfer


    System.out.println("*** Depositing 500 into account 1");
    command = new Deposit(account1, 500);
    execute(command);

    System.out.println("*** Transferring 200 from account 1 into account 2");
    command = new Transfer(account1.number(), account2.number(), 200);
    execute(command);

    System.out.println("*** Deleting account 1");
    command = new AccountDeletion(account1);
    execute(command);
View Full Code Here

TOP

Related Classes of org.prevayler.demos.memento.commands.Transfer

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.