Package org.jitterbit.integration.server.db.trandb

Examples of org.jitterbit.integration.server.db.trandb.ProjectBackupTab$PreparedStatementExecuterImpl


        checkNotNull(connection, "connection");
        this.connection = connection;
    }

    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

Related Classes of org.jitterbit.integration.server.db.trandb.ProjectBackupTab$PreparedStatementExecuterImpl

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.