All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zeroturnaround.jenkins.updateModes.FullRestart Maven / Gradle / Ivy

Go to download

LiveRebel Plugin helps to run updates to your JEE containers faster. LiveRebel is a tool for hot updates without downtime, lost sessions and OutOfMemoryErrors. You have to have a running LiveRebel Command Center to use this plugin.

The newest version!
package org.zeroturnaround.jenkins.updateModes;

import org.kohsuke.stapler.DataBoundConstructor;
import org.zeroturnaround.liverebel.plugins.PluginUtil;

import hudson.Extension;

public class FullRestart extends UpdateMode{
  public final int connectionPause;

  public FullRestart() {
    this.connectionPause = PluginUtil.DEFAULT_REQUEST_PAUSE;
  }

  @DataBoundConstructor
  public FullRestart(int connectionPause) {
    this.connectionPause = connectionPause;
  }

  @Override
  public String toString() {
    return "Full restart";
  }

  @Extension
  public static final UpdateMode.UpdateModeDescriptor D = new UpdateMode.UpdateModeDescriptor(FullRestart.class);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy