Class Disk
- java.lang.Object
-
- org.jenkinsci.plugins.ewm.definitions.Disk
-
- All Implemented Interfaces:
Describable<Disk>
public class Disk extends Object implements Describable<Disk>
Describable used to define the disk information within aDiskPool
.- Author:
- Alexandru Somai
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Disk.DescriptorImpl
-
Field Summary
Fields Modifier and Type Field Description static Disk.DescriptorImpl
DESCRIPTOR
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Descriptor<Disk>
getDescriptor()
String
getDiskId()
DiskInfoProvider
getDiskInfo()
String
getDisplayName()
String
getMasterMountPoint()
String
getPhysicalPathOnDisk()
-
-
-
Field Detail
-
DESCRIPTOR
@Extension public static final Disk.DescriptorImpl DESCRIPTOR
-
-
Constructor Detail
-
Disk
@DataBoundConstructor public Disk(String diskId, String displayName, String masterMountPoint, String physicalPathOnDisk, DiskInfoProvider diskInfo)
-
-
Method Detail
-
getDescriptor
public Descriptor<Disk> getDescriptor()
- Specified by:
getDescriptor
in interfaceDescribable<Disk>
-
getDiskId
@CheckForNull public String getDiskId()
-
getDisplayName
@CheckForNull public String getDisplayName()
-
getMasterMountPoint
@CheckForNull public String getMasterMountPoint()
-
getPhysicalPathOnDisk
@CheckForNull public String getPhysicalPathOnDisk()
-
getDiskInfo
@Nonnull public DiskInfoProvider getDiskInfo()
-
-