Package org.prevayler.demos.memento.commands

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


    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);

    System.out.println("*** Deleting account 1");
    command = new AccountDeletion(account2);
    execute(command);

    prevayler.takeSnapshot();
  }
View Full Code Here

TOP

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

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.