Uses of Class
org.jenkinsci.plugins.scriptler.config.Parameter
-
Packages that use Parameter Package Description org.jenkinsci.plugins.scriptler.builder org.jenkinsci.plugins.scriptler.config org.jenkinsci.plugins.scriptler.util -
-
Uses of Parameter in org.jenkinsci.plugins.scriptler.builder
Methods in org.jenkinsci.plugins.scriptler.builder that return Parameter Modifier and Type Method Description Parameter[]
ScriptlerBuilder. getParameters()
Deprecated.since 3.5Methods in org.jenkinsci.plugins.scriptler.builder that return types with arguments of type Parameter Modifier and Type Method Description List<Parameter>
ScriptlerBuilder. getParametersList()
Constructors in org.jenkinsci.plugins.scriptler.builder with parameters of type Parameter Constructor Description ScriptlerBuilder(String builderId, String scriptId, boolean propagateParams, Parameter[] parameters)
Deprecated.as of 3.5; useScriptlerBuilder(String, String, boolean, List)
Constructor parameters in org.jenkinsci.plugins.scriptler.builder with type arguments of type Parameter Constructor Description ScriptlerBuilder(String builderId, String scriptId, boolean propagateParams, List<Parameter> parameters)
-
Uses of Parameter in org.jenkinsci.plugins.scriptler.config
Methods in org.jenkinsci.plugins.scriptler.config that return types with arguments of type Parameter Modifier and Type Method Description List<Parameter>
Script. getParameters()
Method parameters in org.jenkinsci.plugins.scriptler.config with type arguments of type Parameter Modifier and Type Method Description void
Script. setParameters(List<Parameter> parameters)
Constructor parameters in org.jenkinsci.plugins.scriptler.config with type arguments of type Parameter Constructor Description Script(String id, String name, String comment, boolean available, String originCatalog, String originScript, String originDate, boolean nonAdministerUsing, List<Parameter> parameters, boolean onlyMaster)
used to merge scriptsScript(String id, String name, String comment, boolean available, String originCatalog, String originScript, String originDate, List<Parameter> parameters)
Constructor to create a script imported from a foreign catalog.Script(String id, String name, String comment, boolean nonAdministerUsing, List<Parameter> parameters, boolean onlyMaster)
used to create/update a new script in the UIScript(String id, String name, String comment, String originCatalog, String originScript, String originDate, boolean nonAdministerUsing, List<Parameter> parameters, boolean onlyMaster)
used to merge scripts -
Uses of Parameter in org.jenkinsci.plugins.scriptler.util
Methods in org.jenkinsci.plugins.scriptler.util that return types with arguments of type Parameter Modifier and Type Method Description static List<Parameter>
UIHelper. extractParameters(net.sf.json.JSONObject json)
Extracts the parameters from the given requestMethod parameters in org.jenkinsci.plugins.scriptler.util with type arguments of type Parameter Modifier and Type Method Description static String
ScriptHelper. runScript(String[] slaves, String scriptTxt, Collection<Parameter> parameters)
static String
ScriptHelper. runScript(String node, String scriptTxt, Collection<Parameter> parameters)
Runs the execution on a given slave.Constructor parameters in org.jenkinsci.plugins.scriptler.util with type arguments of type Parameter Constructor Description GroovyScript(String script, Collection<Parameter> parameters, boolean failWithException, TaskListener listener)
ConstructorGroovyScript(String script, Collection<Parameter> parameters, boolean failWithException, TaskListener listener, Launcher launcher, AbstractBuild<?,?> build)
This constructor can only be used when the script is executed on the master, because launcher and build can not be transered to a slave and the therefore the execution will fail
-