Package org.syncany.operations.cleanup.CleanupOperationResult

Examples of org.syncany.operations.cleanup.CleanupOperationResult.CleanupResultCode


    logger.log(Level.INFO, "");
    logger.log(Level.INFO, "Running 'Cleanup' at client " + config.getMachineName() + " ...");
    logger.log(Level.INFO, "--------------------------------------------");

    // Do initial check out remote repository preconditions
    CleanupResultCode preconditionResult = checkPreconditions();

    if (preconditionResult != CleanupResultCode.OK) {
      return new CleanupOperationResult(preconditionResult);
    }
View Full Code Here

TOP

Related Classes of org.syncany.operations.cleanup.CleanupOperationResult.CleanupResultCode

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.