org.apache.commons.vfs.provider
Class AbstractLayeredFileProvider
java.lang.Object
org.apache.commons.vfs.provider.AbstractVfsComponent
org.apache.commons.vfs.provider.AbstractVfsContainer
org.apache.commons.vfs.provider.AbstractFileProvider
org.apache.commons.vfs.provider.AbstractLayeredFileProvider
- All Implemented Interfaces:
- FileProvider, VfsComponent
- Direct Known Subclasses:
- CompressedFileFileProvider, TarFileProvider, ZipFileProvider
- public abstract class AbstractLayeredFileProvider
- extends AbstractFileProvider
- implements FileProvider
A FileProvider that is layered on top of another, such as the
contents of a zip or tar file.
- Version:
- $Revision: 480428 $ $Date: 2006-11-29 07:15:24 +0100 (Mi, 29 Nov 2006) $
- Author:
- Adam Murdoch
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AbstractLayeredFileProvider
public AbstractLayeredFileProvider()
findFile
public FileObject findFile(FileObject baseFile,
String uri,
FileSystemOptions properties)
throws FileSystemException
- Locates a file object, by absolute URI.
- Specified by:
findFile in interface FileProvider
- Parameters:
baseFile - The base file to use for resolving the individual parts of
a compound URI.uri - The absolute URI of the file to find.properties -
- Throws:
FileSystemException
createFileSystem
public FileObject createFileSystem(String scheme,
FileObject file,
FileSystemOptions fileSystemOptions)
throws FileSystemException
- Creates a layered file system.
- Specified by:
createFileSystem in interface FileProvider- Overrides:
createFileSystem in class AbstractFileProvider
- Throws:
FileSystemException
doCreateFileSystem
protected abstract FileSystem doCreateFileSystem(String scheme,
FileObject file,
FileSystemOptions fileSystemOptions)
throws FileSystemException
- Creates a layered file system. This method is called if the file system
is not cached. The file system may implement
VfsComponent.
- Parameters:
scheme - The URI scheme.file - The file to create the file system on top of.
- Returns:
- The file system.
- Throws:
FileSystemException
Copyright © 2002-2006 The Apache Software Foundation. All Rights Reserved.