Package com.mku.fs.drive
Class VirtualDrive
- java.lang.Object
-
- com.mku.fs.drive.VirtualDrive
-
- Direct Known Subclasses:
AesDrive
public abstract class VirtualDrive extends java.lang.Object
Abstract virtual drive.
-
-
Constructor Summary
Constructors Constructor Description VirtualDrive()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract IFile
getPrivateDir()
abstract IVirtualFile
getRoot()
abstract void
onUnlockError()
Method is called when unlocking the drive has failedabstract void
onUnlockSuccess()
Method is called when the user is authenticated
-
-
-
Method Detail
-
onUnlockSuccess
public abstract void onUnlockSuccess()
Method is called when the user is authenticated
-
onUnlockError
public abstract void onUnlockError()
Method is called when unlocking the drive has failed
-
getPrivateDir
public abstract IFile getPrivateDir() throws java.lang.Exception
- Throws:
java.lang.Exception
-
getRoot
public abstract IVirtualFile getRoot()
-
-