Package com.alexecollins.vbox.core

Examples of com.alexecollins.vbox.core.Snapshot


  public Void call() throws Exception {

    verifySignature();

    final Snapshot snapshot = Snapshot.POST_CREATION;
    if (box.exists()) {

      box.powerOff();

      if (box.getSnapshots().contains(snapshot)) {
View Full Code Here


      new Stop(box).call();
    }

    verifySignature();

    final Snapshot snapshot = Snapshot.POST_PROVISIONING;
    if (box.exists()) {
      box.powerOff();
      if (box.getSnapshots().contains(snapshot)) {
        LOGGER.info("restoring '" + box.getName() + "' from snapshot " + snapshot);
        box.restoreSnapshot(Snapshot.POST_PROVISIONING);
View Full Code Here

TOP

Related Classes of com.alexecollins.vbox.core.Snapshot

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.