Example usage for org.apache.commons.vfs.provider AbstractFileSystem subclass-usage

List of usage examples for org.apache.commons.vfs.provider AbstractFileSystem subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.vfs.provider AbstractFileSystem subclass-usage.

Usage

From source file com.newatlanta.appengine.vfs.provider.GaeFileSystem.java

/**
 * Creates {@link GaeFileObject} instances. This is an internal GaeVFS implementation
 * class that is normally not referenced directly, but only indirectly via the
 * <a href="http://commons.apache.org/vfs/apidocs/index.html" target="_blank">Apache
 * Commons VFS API</a>. See {@link GaeVFS} as the entry point for application
 * code that interacts with GaeVFS.

From source file com.thinkberg.moxo.vfs.s3.jets3t.Jets3tFileSystem.java

/**
 * An S3 file system.
 *
 * @author Matthias L. Jugel
 */
public class Jets3tFileSystem extends AbstractFileSystem {

From source file org.pentaho.hdfs.vfs.HDFSFileSystem.java

public class HDFSFileSystem extends AbstractFileSystem implements FileSystem {

    private static org.apache.hadoop.fs.FileSystem mockHdfs;
    private org.apache.hadoop.fs.FileSystem hdfs;

    protected HDFSFileSystem(final FileName rootName, final FileSystemOptions fileSystemOptions) {

From source file org.sonatype.gshell.vfs.provider.truezip.TruezipFileSystem.java

/**
 * <h href="https://truezip.dev.java.net">TrueZIP</a> file system.
 *
 * @author <a href="mailto:jason@planet57.com">Jason Dillon</a>
 * @since 2.0
 */

From source file org.josso.tooling.gshell.install.provider.maven2.MavenFileSystem.java

public class MavenFileSystem extends AbstractFileSystem implements FileSystem {

    protected MavenFileSystem(FileName rootName, FileSystemOptions fileSystemOptions) {
        super(rootName, null, fileSystemOptions);
    }

From source file com.thinkberg.vfs.s3.jets3t.Jets3tFileSystem.java

/**
 * An S3 file system.
 *
 * @author Matthias L. Jugel
 */
public class Jets3tFileSystem extends AbstractFileSystem {

From source file org.jclouds.vfs.provider.blobstore.BlobStoreFileSystem.java

/**
 * @author Adrian Cole
 */
public class BlobStoreFileSystem extends AbstractFileSystem {
    final BlobStoreContext context;
    final String container;

From source file com.jaspersoft.jasperserver.api.metadata.common.util.RepositoryFileSystem.java

/**
 * Implementation of Apache VFS FileSystem to access the JasperServer repository.
 * This implementation expects "internal" URIs that do not have to be transformed
 * for multi-tenancy.
 *
 * @author swood

From source file org.pentaho.s3.vfs.S3FileSystem.java

public class S3FileSystem extends AbstractFileSystem implements FileSystem {

    private S3Service service;

    protected S3FileSystem(final FileName rootName, final FileSystemOptions fileSystemOptions) {
        super(rootName, null, fileSystemOptions);

From source file net.didion.loopy.vfs.provider.iso.IsoFileSystem.java

/**
 * Implementation of {@link org.apache.commons.vfs.FileSystem} for ISO9660 (.iso) files.
 *
 * TODO: perf test with ISO files containing lots of entries; possibly optimize by creating
 * FileObjects on-demand via the createFile() method.
 */