Examples of selectBackupsForProject()


Examples of org.jitterbit.integration.server.db.trandb.ProjectBackupTab.selectBackupsForProject()

    public List<ProjectBackupDescriptor> listBackups(IntegrationProjectId projectId) {
        ProjectBackupTab tab = null;
        Converter converter = null;
        try {
            tab = new ProjectBackupTab(connection);
            List<ProjectBackupTabRow> rows = tab.selectBackupsForProject(projectId);
            if (!rows.isEmpty()) {
                File kongaHome = new File(ServerConfig.getServerHome());
                converter = new Converter(connection, kongaHome);
                return KongaListUtils.transform(rows, converter);
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.