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 Modifier and Type Class Description static class
FileSystemProvisioner.Default
Deprecated.
-
Field Summary
Fields Modifier and Type Field Description static FileSystemProvisioner
DEFAULT
Deprecated.
-
Constructor Summary
Constructors Constructor Description FileSystemProvisioner()
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description abstract void
discardWorkspace(AbstractProject<?,?> project, FilePath ws)
Deprecated.Descriptor
getDescriptor()
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 Detail
-
DEFAULT
public static final FileSystemProvisioner DEFAULT
Deprecated.
-
-
Method Detail
-
prepareWorkspace
public abstract void prepareWorkspace(AbstractBuild<?,?> build, FilePath ws, TaskListener listener) throws IOException, InterruptedException
Deprecated.- Throws:
IOException
InterruptedException
-
discardWorkspace
public abstract void discardWorkspace(AbstractProject<?,?> project, FilePath ws) throws IOException, InterruptedException
Deprecated.- Throws:
IOException
InterruptedException
-
snapshot
public abstract WorkspaceSnapshot snapshot(AbstractBuild<?,?> build, FilePath ws, String glob, TaskListener listener) throws IOException, InterruptedException
Deprecated.- Throws:
IOException
InterruptedException
-
getDescriptor
public Descriptor 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>
-
-