Package hudson.model
Class FileParameterDefinition
java.lang.Object
hudson.model.ParameterDefinition
hudson.model.FileParameterDefinition
- All Implemented Interfaces:
ExtensionPoint
,Describable<ParameterDefinition>
,Serializable
ParameterDefinition
for doing file upload.
The file will be then placed into the workspace at the beginning of a build.
- Author:
- Kohsuke Kawaguchi
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class hudson.model.ParameterDefinition
ParameterDefinition.ParameterDescriptor
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Field Summary
Fields inherited from class hudson.model.ParameterDefinition
LIST
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateValue
(CLICommand command, String value) Create a parameter value from the string given in the CLI.createValue
(org.kohsuke.stapler.StaplerRequest2 req) Create a parameter value from a GET with query string.createValue
(org.kohsuke.stapler.StaplerRequest2 req, net.sf.json.JSONObject jo) Create a parameter value from a form submission.boolean
int
hashCode()
Methods inherited from class hudson.model.ParameterDefinition
all, copyWithDefaultValue, createValue, createValue, getDefaultParameterValue, getDescription, getDescriptor, getFormattedDescription, getName, getType, isValid, setDescription
-
Constructor Details
-
FileParameterDefinition
- Since:
- 2.281
-
FileParameterDefinition
-
-
Method Details
-
createValue
public FileParameterValue createValue(org.kohsuke.stapler.StaplerRequest2 req, net.sf.json.JSONObject jo) Description copied from class:ParameterDefinition
Create a parameter value from a form submission.This method is invoked when the user fills in the parameter values in the HTML form and submits it to the server.
- Overrides:
createValue
in classParameterDefinition
-
createValue
Description copied from class:ParameterDefinition
Create a parameter value from a GET with query string. If no value is available in the request, it returns a default value if possible, or null.Unlike
ParameterDefinition.createValue(StaplerRequest2, JSONObject)
, this method is intended to support the programmatic POST-ing of the build URL. This form is less expressive (as it doesn't support the tree form), but it's more scriptable.If a
ParameterDefinition
can't really support this mode of creating a value, you may just always return null.- Overrides:
createValue
in classParameterDefinition
-
createValue
public ParameterValue createValue(CLICommand command, String value) throws IOException, InterruptedException Description copied from class:ParameterDefinition
Create a parameter value from the string given in the CLI.- Overrides:
createValue
in classParameterDefinition
- Parameters:
command
- This is the command that got the parameter.- Throws:
AbortException
- If the CLI processing should be aborted. Hudson will report the error message without stack trace, and then exits this command. Useful for graceful termination.IOException
InterruptedException
-
hashCode
public int hashCode()- Overrides:
hashCode
in classParameterDefinition
-
equals
- Overrides:
equals
in classParameterDefinition
-