Package org.apache.commons.vfs2.cache
Class AbstractFilesCache
- java.lang.Object
-
- org.apache.commons.vfs2.provider.AbstractVfsComponent
-
- org.apache.commons.vfs2.cache.AbstractFilesCache
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,FilesCache
,VfsComponent
- Direct Known Subclasses:
DefaultFilesCache
,LRUFilesCache
,NullFilesCache
,SoftRefFilesCache
public abstract class AbstractFilesCache extends AbstractVfsComponent implements FilesCache
Abstract base class for FilesCache implementations.
-
-
Constructor Summary
Constructors Constructor Description AbstractFilesCache()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
touchFile(FileObject file)
Default implementation is a NOOP.-
Methods inherited from class org.apache.commons.vfs2.provider.AbstractVfsComponent
close, getContext, getLogger, init, setContext, setLogger
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.commons.vfs2.FilesCache
clear, close, getFile, putFile, putFileIfAbsent, removeFile
-
-
-
-
Method Detail
-
touchFile
public void touchFile(FileObject file)
Default implementation is a NOOP.- Parameters:
file
- touch this file.
-
-