Package org.jitterbit.integration.client.project.backup

Examples of org.jitterbit.integration.client.project.backup.BackupResult


        }
        // Check if the user has cancelled the process
        if (Thread.currentThread().isInterrupted()) {
            return;
        }
        BackupResult result = createProjectBackup();
        File backupFolder = result.getBackupFolder();
        if (backupFolder != null) {
            uploadBackup(backupFolder);
        } else if (!result.noBackupNeeded()) {
            // An attempt was made to create a backup, but something went wrong
            logFailureToDeployLog();
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.project.backup.BackupResult

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.