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 boolean
delete(ResourcePath filePath)
boolean
exists(ResourcePath resourcePath)
boolean
mkdir(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:
exists
in interfaceIPhysicalFileSystem
-
delete
public boolean delete(ResourcePath filePath)
- Specified by:
delete
in interfaceIPhysicalFileSystem
-
mkdir
public boolean mkdir(ResourcePath dirPath)
- Specified by:
mkdir
in interfaceIPhysicalFileSystem
-
-