Package io.jenkins.plugins.servicenow
Class BatchInstallBuilder
- java.lang.Object
-
- hudson.tasks.BuildStepCompatibilityLayer
-
- hudson.tasks.Builder
-
- io.jenkins.plugins.servicenow.ProgressBuilder
-
- io.jenkins.plugins.servicenow.BatchInstallBuilder
-
- All Implemented Interfaces:
ExtensionPoint
,Describable<Builder>
,BuildStep
,SimpleBuildStep
public class BatchInstallBuilder extends ProgressBuilder
Build step responsible for publishing the specified application and all of its artifacts to the application repository. See API documentation: https://developer.servicenow.com/dev.do#!/reference/api/orlando/rest/cicd-api#cicd-POST-app_repo-publish?navFilter=sn_cicd
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BatchInstallBuilder.DescriptorImpl
-
Nested classes/interfaces inherited from interface hudson.tasks.BuildStep
BuildStep.PublisherList
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Nested classes/interfaces inherited from interface jenkins.tasks.SimpleBuildStep
SimpleBuildStep.LastBuildAction, SimpleBuildStep.LastBuildActionFactory
-
-
Field Summary
-
Fields inherited from class io.jenkins.plugins.servicenow.ProgressBuilder
workspace
-
Fields inherited from interface hudson.tasks.BuildStep
BUILDERS, PUBLISHERS
-
-
Constructor Summary
Constructors Constructor Description BatchInstallBuilder(String credentialsId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBatchName()
String
getFile()
String
getNotes()
String
getPackages()
Boolean
getUseFile()
protected boolean
perform(Run<?,?> run, TaskListener taskListener, Integer progressCheckInterval)
void
setBatchName(String batchName)
void
setFile(String file)
void
setNotes(String notes)
void
setPackages(String packages)
protected List<ParameterValue>
setupParametersAfterBuildStep()
void
setUseFile(Boolean useFile)
-
Methods inherited from class io.jenkins.plugins.servicenow.ProgressBuilder
buildErrorDetailFromFailedResponse, checkProgress, getApiVersion, getClientFactory, getCredentialsId, getGlobalSNParams, getRestClient, getUrl, getValue, perform, setApiVersion, setClientFactory, setCredentialsId, setRestClient, setupBuilderParameters, setUrl
-
Methods inherited from class hudson.tasks.Builder
all, getDescriptor, getRequiredMonitorService, prebuild
-
Methods inherited from class hudson.tasks.BuildStepCompatibilityLayer
getProjectAction, getProjectAction, getProjectActions, perform, perform, prebuild
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface hudson.tasks.BuildStep
getProjectAction, getProjectActions, getRequiredMonitorService, perform, prebuild
-
Methods inherited from interface jenkins.tasks.SimpleBuildStep
perform, perform, requiresWorkspace
-
-
-
-
Constructor Detail
-
BatchInstallBuilder
@DataBoundConstructor public BatchInstallBuilder(String credentialsId)
-
-
Method Detail
-
getBatchName
public String getBatchName()
-
setBatchName
@DataBoundSetter public void setBatchName(String batchName)
-
getPackages
public String getPackages()
-
setPackages
@DataBoundSetter public void setPackages(String packages)
-
getNotes
public String getNotes()
-
setNotes
@DataBoundSetter public void setNotes(String notes)
-
getFile
public String getFile()
-
setFile
@DataBoundSetter public void setFile(String file)
-
getUseFile
public Boolean getUseFile()
-
setUseFile
@DataBoundSetter public void setUseFile(Boolean useFile)
-
perform
protected boolean perform(Run<?,?> run, @NonNull TaskListener taskListener, Integer progressCheckInterval)
- Specified by:
perform
in classProgressBuilder
-
setupParametersAfterBuildStep
protected List<ParameterValue> setupParametersAfterBuildStep()
- Overrides:
setupParametersAfterBuildStep
in classProgressBuilder
-
-