Class AbstractFileDecompressStep
java.lang.Object
hudson.model.AbstractDescribableImpl<org.jenkinsci.plugins.workflow.steps.Step>
org.jenkinsci.plugins.workflow.steps.Step
org.jenkinsci.plugins.pipeline.utility.steps.AbstractFileStep
org.jenkinsci.plugins.pipeline.utility.steps.AbstractFileDecompressStep
- All Implemented Interfaces:
- ExtensionPoint,- Describable<org.jenkinsci.plugins.workflow.steps.Step>
- 
Nested Class SummaryNested classes/interfaces inherited from interface hudson.ExtensionPointExtensionPoint.LegacyInstancesAreScopedToHudson
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptiongetDir()The relative path of the base directory to create the archive from.getGlob()Ant style pattern of files to extract from the archive.booleanisQuiet()Suppress the verbose output that logs every single file that is dealt with.booleanisTest()Test the integrity of the archive instead of extracting it.voidThe relative path of the base directory to create the archive from.voidAnt style pattern of files to extract from the archive.voidsetQuiet(boolean quiet) Suppress the verbose output that logs every single file that is dealt with.voidsetTest(boolean test) Test the integrity of the archive instead of extracting it.Methods inherited from class org.jenkinsci.plugins.pipeline.utility.steps.AbstractFileStepgetFile, setFileMethods inherited from class org.jenkinsci.plugins.workflow.steps.StepgetDescriptor, start
- 
Constructor Details- 
AbstractFileDecompressSteppublic AbstractFileDecompressStep()
 
- 
- 
Method Details- 
getDirThe relative path of the base directory to create the archive from. Leave empty to create from the current working directory.- Returns:
- the dir
 
- 
setDirThe relative path of the base directory to create the archive from. Leave empty to create from the current working directory.- Parameters:
- dir- the dir
 
- 
getGlobAnt style pattern of files to extract from the archive. Leave empty to include all files and directories.- Returns:
- the include pattern
 
- 
setGlobAnt style pattern of files to extract from the archive. Leave empty to include all files and directories.- Parameters:
- glob- the include pattern
 
- 
isTestpublic boolean isTest()Test the integrity of the archive instead of extracting it. When this parameter is enabled, all other parameters (except forAbstractFileStep.getFile()) will be ignored. The step will returntrueorfalsedepending on the result instead of throwing an exception.- Returns:
- if the archive should just be tested or not
 
- 
setTest@DataBoundSetter public void setTest(boolean test) Test the integrity of the archive instead of extracting it. When this parameter is enabled, all other parameters (except forAbstractFileStep.getFile()) will be ignored. The step will returntrueorfalsedepending on the result instead of throwing an exception.- Parameters:
- test- if the archive should just be tested or not
 
- 
isQuietpublic boolean isQuiet()Suppress the verbose output that logs every single file that is dealt with.- Returns:
- if verbose logging should be suppressed
 
- 
setQuiet@DataBoundSetter public void setQuiet(boolean quiet) Suppress the verbose output that logs every single file that is dealt with.- Parameters:
- quiet- if verbose logging should be suppressed
 
 
-