Package org.jitterbit.integration.client.deploy.history

Examples of org.jitterbit.integration.client.deploy.history.NullDeployHistory


    public DefaultDeployLauncher(DeployWorker worker, IntegrationProject project) {
        checkNotNull(worker, "worker");
        checkNotNull(project, "project");
        this.worker = worker;
        this.project = project;
        history = new NullDeployHistory();
    }
View Full Code Here


        this.project = project;
        history = new NullDeployHistory();
    }

    public void setHistory(DeployHistory history) {
        this.history = (history != null ? history : new NullDeployHistory());
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.deploy.history.NullDeployHistory

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.