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
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract void
discardWorkspace
(AbstractProject<?, ?> project, FilePath ws) Deprecated.Deprecated.Gets the descriptor for this instance.abstract void
prepareWorkspace
(AbstractBuild<?, ?> build, FilePath ws, TaskListener listener) Deprecated.abstract WorkspaceSnapshot
snapshot
(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:
IOException
InterruptedException
-
discardWorkspace
public abstract void discardWorkspace(AbstractProject<?, ?> project, FilePath ws) throws IOException, InterruptedExceptionDeprecated.- Throws:
IOException
InterruptedException
-
snapshot
public abstract WorkspaceSnapshot snapshot(AbstractBuild<?, ?> build, FilePath ws, String glob, TaskListener listener) throws IOException, InterruptedExceptionDeprecated.- Throws:
IOException
InterruptedException
-
getDescriptor
Deprecated.Description copied from interface:Describable
Gets the descriptor for this instance.Descriptor
is a singleton for every concreteDescribable
implementation, 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.)- Specified by:
getDescriptor
in interfaceDescribable<FileSystemProvisioner>
-