public abstract class FileSystemType extends AbstractSiteData
The various attributes that can be associated with the the server are displayed in the following table.
Attribute Name | Attribute Description |
---|---|
mount-point | the mount point for the filesystem |
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
mFreeSize
The free space on the file system.
|
protected java.lang.String |
mMountPoint
The mount point for the file system.
|
protected java.lang.String |
mTotalSize
The total size of file system.
|
Constructor and Description |
---|
FileSystemType()
The default constructor.
|
FileSystemType(java.lang.String mountPoint,
java.lang.String totalSize,
java.lang.String freeSize)
The overloaded constructor.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
clone()
Returns the clone of the object.
|
java.lang.String |
getFreeSize()
Sets the free directory size
|
java.lang.String |
getMountPoint()
Returns the mount point for the file system type.
|
java.lang.String |
getTotalSize()
Returns the total directory size.
|
void |
setFreeSize(java.lang.String size)
Sets the free directory size
|
void |
setMountPoint(java.lang.String point)
Sets the mount point for the file system type.
|
void |
setTotalSize(java.lang.String size)
Sets the directory size
|
accept, toString, toXML, toXML, writeAttribute
protected java.lang.String mMountPoint
protected java.lang.String mTotalSize
protected java.lang.String mFreeSize
public FileSystemType()
public FileSystemType(java.lang.String mountPoint, java.lang.String totalSize, java.lang.String freeSize)
mountPoint
- the mount point of the system.totalSize
- the total size of the system.freeSize
- the free sizepublic void setMountPoint(java.lang.String point)
point
- the mount point.public java.lang.String getMountPoint()
public void setTotalSize(java.lang.String size)
size
- the directory size.public java.lang.String getTotalSize()
public void setFreeSize(java.lang.String size)
size
- the directory size.public java.lang.String getFreeSize()
public java.lang.Object clone()
clone
in class AbstractSiteData