
hudson.tasks.BatchFile Maven / Gradle / Ivy
package hudson.tasks;
import hudson.FilePath;
import hudson.model.Descriptor;
import net.sf.json.JSONObject;
import org.kohsuke.stapler.StaplerRequest;
/**
* Executes commands by using Windows batch file.
*
* @author Kohsuke Kawaguchi
*/
public class BatchFile extends CommandInterpreter {
public BatchFile(String command) {
super(command);
}
protected String[] buildCommandLine(FilePath script) {
return new String[] {script.getRemote()};
}
protected String getContents() {
return command+"\r\nexit %ERRORLEVEL%";
}
protected String getFileExtension() {
return ".bat";
}
public Descriptor getDescriptor() {
return DESCRIPTOR;
}
public static final DescriptorImpl DESCRIPTOR = new DescriptorImpl();
public static final class DescriptorImpl extends Descriptor {
private DescriptorImpl() {
super(BatchFile.class);
}
public String getHelpFile() {
return "/help/project-config/batch.html";
}
public String getDisplayName() {
return Messages.BatchFile_DisplayName();
}
public Builder newInstance(StaplerRequest req, JSONObject data) {
return new BatchFile(data.getString("batchFile"));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy