Package gw.fs.physical
Class AbstractCachingPhysicalFileSystem
- java.lang.Object
-
- gw.fs.physical.AbstractCachingPhysicalFileSystem
-
- All Implemented Interfaces:
IPhysicalFileSystem
- Direct Known Subclasses:
FullCachingPhysicalFileSystem,FuzzyTimestampCachingPhysicalFileSystem
public abstract class AbstractCachingPhysicalFileSystem extends Object implements IPhysicalFileSystem
-
-
Field Summary
Fields Modifier and Type Field Description protected IPhysicalFileSystem_delegate
-
Constructor Summary
Constructors Constructor Description AbstractCachingPhysicalFileSystem(IPhysicalFileSystem delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleandelete(ResourcePath filePath)booleanexists(ResourcePath resourcePath)booleanmkdir(ResourcePath dirPath)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface gw.fs.physical.IPhysicalFileSystem
clearAllCaches, clearDirectoryCaches, getFileMetadata, listFiles
-
-
-
-
Field Detail
-
_delegate
protected final IPhysicalFileSystem _delegate
-
-
Constructor Detail
-
AbstractCachingPhysicalFileSystem
public AbstractCachingPhysicalFileSystem(IPhysicalFileSystem delegate)
-
-
Method Detail
-
exists
public boolean exists(ResourcePath resourcePath)
- Specified by:
existsin interfaceIPhysicalFileSystem
-
delete
public boolean delete(ResourcePath filePath)
- Specified by:
deletein interfaceIPhysicalFileSystem
-
mkdir
public boolean mkdir(ResourcePath dirPath)
- Specified by:
mkdirin interfaceIPhysicalFileSystem
-
-