| 1 | |
package org.webslinger.commons.vfs.ccache; |
| 2 | |
|
| 3 | |
import org.apache.commons.vfs.FileObject; |
| 4 | |
import org.apache.commons.vfs.FileSystem; |
| 5 | |
import org.apache.commons.vfs.FileSystemException; |
| 6 | |
import org.apache.commons.vfs.FileSystemOptions; |
| 7 | |
import org.apache.commons.vfs.provider.LayeredFileName; |
| 8 | |
|
| 9 | |
import org.webslinger.commons.vfs.FilteringFileProvider; |
| 10 | |
|
| 11 | 47 | public class ContentCacheFileProvider extends FilteringFileProvider { |
| 12 | |
public FileSystem doCreateFileSystem(LayeredFileName name, FileObject file, FileSystemOptions properties) throws FileSystemException { |
| 13 | 0 | return new ContentCacheFileSystem(name, file, properties); |
| 14 | |
} |
| 15 | |
} |