Package org.jitterbit.integration.client.project.export

Examples of org.jitterbit.integration.client.project.export.ProjectPostExportManager


        }
    }

    @Override
    public PostExportManager prepareForExport(boolean keepPasswords) throws ExportPreparationException {
        PostExportManager mgr = new ProjectPostExportManager(this, keepPasswords);
        try {
            prepareForExportImpl(mgr);
            return mgr;
        } catch (ExportPreparationException ex) {
            mgr.runJobs(PostExportJob.Condition.ON_FAILURE);
            throw ex;
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.project.export.ProjectPostExportManager

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.