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 Summary
Nested Classes - 
Field Summary
Fields - 
Constructor Summary
Constructors - 
Method Summary
Modifier 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
- 
DEFAULT
Deprecated. 
 - 
 - 
Constructor Details
- 
FileSystemProvisioner
public FileSystemProvisioner()Deprecated. 
 - 
 - 
Method Details
- 
prepareWorkspace
public abstract void prepareWorkspace(AbstractBuild<?, ?> build, FilePath ws, TaskListener listener) throws IOException, InterruptedExceptionDeprecated.- Throws:
 IOExceptionInterruptedException
 - 
discardWorkspace
public abstract void discardWorkspace(AbstractProject<?, ?> project, FilePath ws) throws IOException, InterruptedExceptionDeprecated.- Throws:
 IOExceptionInterruptedException
 - 
snapshot
public abstract WorkspaceSnapshot snapshot(AbstractBuild<?, ?> build, FilePath ws, String glob, TaskListener listener) throws IOException, InterruptedExceptionDeprecated.- Throws:
 IOExceptionInterruptedException
 - 
getDescriptor
Deprecated.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 interfaceDescribable<FileSystemProvisioner>
 
 -