DeployHistory
38394041424344
public DefaultDeployLauncher(DeployWorker worker, IntegrationProject project) { checkNotNull(worker, "worker"); checkNotNull(project, "project"); this.worker = worker; this.project = project; history = new NullDeployHistory(); }
42434445464748
this.project = project; history = new NullDeployHistory(); } public void setHistory(DeployHistory history) { this.history = (history != null ? history : new NullDeployHistory()); }