Package hudson
Class FileSystemProvisioner
java.lang.Object
hudson.FileSystemProvisioner
- All Implemented Interfaces:
- Describable<FileSystemProvisioner>
- Direct Known Subclasses:
- FileSystemProvisioner.Default
@Deprecated
public abstract class FileSystemProvisioner
extends Object
implements Describable<FileSystemProvisioner>
Deprecated.
Unused.
- 
Nested Class SummaryNested Classes
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionabstract voiddiscardWorkspace(AbstractProject<?, ?> project, FilePath ws) Deprecated.Deprecated.Gets the descriptor for this instance.abstract voidprepareWorkspace(AbstractBuild<?, ?> build, FilePath ws, TaskListener listener) Deprecated.abstract WorkspaceSnapshotsnapshot(AbstractBuild<?, ?> build, FilePath ws, String glob, TaskListener listener) Deprecated.
- 
Field Details- 
DEFAULTDeprecated.
 
- 
- 
Constructor Details- 
FileSystemProvisionerpublic FileSystemProvisioner()Deprecated.
 
- 
- 
Method Details- 
prepareWorkspacepublic abstract void prepareWorkspace(AbstractBuild<?, ?> build, FilePath ws, TaskListener listener) throws IOException, InterruptedExceptionDeprecated.- Throws:
- IOException
- InterruptedException
 
- 
discardWorkspacepublic abstract void discardWorkspace(AbstractProject<?, ?> project, FilePath ws) throws IOException, InterruptedExceptionDeprecated.- Throws:
- IOException
- InterruptedException
 
- 
snapshotpublic abstract WorkspaceSnapshot snapshot(AbstractBuild<?, ?> build, FilePath ws, String glob, TaskListener listener) throws IOException, InterruptedExceptionDeprecated.- Throws:
- IOException
- InterruptedException
 
- 
getDescriptorDeprecated.Description copied from interface:DescribableGets the descriptor for this instance.Descriptoris a singleton for every concreteDescribableimplementation, so ifa.getClass() == b.getClass()then by defaulta.getDescriptor() == b.getDescriptor()as well. (In rare cases a single implementation class may be used for instances with distinct descriptors.)By default looks for a nested class (conventionally named DescriptorImpl) implementingDescriptorand marked withExtension.- Specified by:
- getDescriptorin interface- Describable<FileSystemProvisioner>
 
 
-