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

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

Introduction

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

Usage

From source file org.wso2.carbon.inbound.endpoint.protocol.file.MockFileSystem.java

public class MockFileSystem extends AbstractFileSystem implements FileSystem {

    private final String rootFile;

    public MockFileSystem(FileName rootName, String rootFile, FileSystemOptions opts) {
        super(rootName, (FileObject) null, opts);

From source file org.metaborg.intellij.vfs.IntelliJFileSystem.java

/**
 * The IntelliJ IDEA file system.
 */
public class IntelliJFileSystem extends AbstractFileSystem {

    /**

From source file org.pentaho.googledrive.vfs.GoogleDriveFileSystem.java

public class GoogleDriveFileSystem extends AbstractFileSystem implements FileSystem {

    public GoogleDriveFileSystem(final FileName rootName, final FileSystemOptions fileSystemOptions) {
        super(rootName, null, fileSystemOptions);
    }

From source file com.adito.networkplaces.vfs2.provider.smb.SmbFileSystem.java

/**
 * An SMB file system.
 *
 */
class SmbFileSystem extends AbstractFileSystem implements FileSystem {

From source file org.pentaho.reporting.libraries.pensol.JCRSolutionDirectFileSystem.java

/**
 * @author Marco Vala
 */
public class JCRSolutionDirectFileSystem extends AbstractFileSystem {

    public static final String LAST_REFRESH_TIME_ATTRIBUTE = "lastRefreshTime";

From source file org.pentaho.reporting.libraries.pensol.JCRSolutionFileSystem.java

public class JCRSolutionFileSystem extends AbstractFileSystem {
    private JCRSolutionFileModel solutionFileModel;
    public static final String LAST_REFRESH_TIME_ATTRIBUTE = "lastRefreshTime";
    public static final String MAJOR_VERSION = "version-major";
    public static final String MINOR_VERSION = "version-minor";
    public static final String RELEASE_VERSION = "version-release";

From source file com.sludev.commons.vfs2.provider.s3.SS3FileSystem.java

/**
 * File-System object represents a connect to Amazon S3 via a single client.
 * 
 * @author Kervin Pierre
 */
public class SS3FileSystem extends AbstractFileSystem implements FileSystem {

From source file org.pentaho.googlecloudstorage.vfs.GoogleCloudStorageFileSystem.java

/**
 * Created by bmorrise on 8/28/17.
 */
public class GoogleCloudStorageFileSystem extends AbstractFileSystem implements FileSystem {

    public GoogleCloudStorageFileSystem(FileName rootName, FileSystemOptions fileSystemOptions) {

From source file com.sludev.commons.vfs2.provider.azure.AzFileSystem.java

/**
 * File-System object represents a connect to Microsoft Azure Blob via a single client.
 * 
 * @author Kervin Pierre
 */
public class AzFileSystem extends AbstractFileSystem implements FileSystem {

From source file org.pentaho.big.data.impl.vfs.hdfs.HDFSFileSystem.java

public class HDFSFileSystem extends AbstractFileSystem implements FileSystem {
    private final HadoopFileSystem hdfs;

    public HDFSFileSystem(final FileName rootName, final FileSystemOptions fileSystemOptions,
            HadoopFileSystem hdfs) {
        super(rootName, null, fileSystemOptions);