Package org.jitterbit.integration.client.deploy.serverapi

Examples of org.jitterbit.integration.client.deploy.serverapi.IntegrationProjectDeployer.deployProject()


    private void sendDataToServer(DeployData data, DeployCallback callback) {
        IntegrationServer server = IntegrationServer.getInstance();
        IntegrationProjectDeployer call = server.getServerCall(IntegrationProjectDeployer.class);
        DeployLog.LOG.info("Sending data to the InterchangeProjectDeployer");
        call.deployProject(data, new InternalCallback(projectMgr, data, callback));
    }


    private static final class InternalCallback implements DeployCallback {
View Full Code Here


        project.markAsDeployDirty();
        DeployData data = convertProjectToDeployData(project);
        DeployCallbackImpl cb = new DeployCallbackImpl(project, this.consoleWriter);
        IntegrationServer server = IntegrationServer.getInstance();
        IntegrationProjectDeployer call = server.getServerCall(IntegrationProjectDeployer.class);
        call.deployProject(data, cb);
        return cb.waitUntilDone();
    }

    private DeployData convertProjectToDeployData(final IntegrationProject project) {
        final ManagedProject mp = project.getExtensionObject(ManagedProject.class);
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.