wt.clients.filevault
Class FvAdminFolderInfo

java.lang.Object
  extended bywt.clients.filevault.FvAdminFolderInfo

public class FvAdminFolderInfo
extends Object


Field Summary
private  long _capacity
           
private  boolean _enabled
           
private  long _folderID
           
private  String _folderName
          This is a convenince class that is used by the edit folder screen.
private  boolean _hasMounts
           
private  boolean _readOnly
           
private  long _threshold
           
private  String _vaultName
           
 
Constructor Summary
FvAdminFolderInfo()
           
FvAdminFolderInfo(FileFolder folder)
           
 
Method Summary
 long getCapacity()
           
 long getFolderID()
           
 String getFolderName()
           
 long getThreshold()
           
 String getVaultName()
           
private  void initialize(FileFolder folder)
           
 boolean isEnabled()
           
 boolean isReadOnly()
           
static FvAdminFolderInfo newFvAdminFolderInfo(FileFolder folder)
           
 void setCapacity(long capac)
           
 void setEnabled(boolean enabled)
           
 void setFolderName(String fname)
           
 void setReadOnly(boolean readOnly)
           
 void setThreshold(long thresh)
           
 void setVaultName(String vname)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_folderName

private String _folderName
This is a convenince class that is used by the edit folder screen. Should probably be package scop, but for now it is public. Usage is to get an instance via fvMountInfoMaster.getFolderInfo() This object can be passed as an argument to a ctor of a GUI which needs to display folder information.


_vaultName

private String _vaultName

_readOnly

private boolean _readOnly

_enabled

private boolean _enabled

_hasMounts

private boolean _hasMounts

_folderID

private long _folderID

_capacity

private long _capacity

_threshold

private long _threshold
Constructor Detail

FvAdminFolderInfo

public FvAdminFolderInfo()

FvAdminFolderInfo

public FvAdminFolderInfo(FileFolder folder)
Method Detail

newFvAdminFolderInfo

public static FvAdminFolderInfo newFvAdminFolderInfo(FileFolder folder)

initialize

private void initialize(FileFolder folder)

getVaultName

public String getVaultName()

setVaultName

public void setVaultName(String vname)

getFolderName

public String getFolderName()

setFolderName

public void setFolderName(String fname)

isEnabled

public boolean isEnabled()

setEnabled

public void setEnabled(boolean enabled)

isReadOnly

public boolean isReadOnly()

setReadOnly

public void setReadOnly(boolean readOnly)

getFolderID

public long getFolderID()

getCapacity

public long getCapacity()

setCapacity

public void setCapacity(long capac)

getThreshold

public long getThreshold()

setThreshold

public void setThreshold(long thresh)