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

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

Introduction

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

Usage

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

public class HDFSFileNameParser extends URLFileNameParser {

    private static final HDFSFileNameParser INSTANCE = new HDFSFileNameParser();

    public HDFSFileNameParser() {
        super(-1);

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

/**
 * Parses MapR FileSystem URIs. This only differs from {@link URLFileNameParser} in that it allows empty host names.
 *
 * @author Jordan Ganoff (jganoff@pentaho.com)
 */
public class MapRFileNameParser extends URLFileNameParser {

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

public class S3FileNameParser extends URLFileNameParser {

    private static final S3FileNameParser INSTANCE = new S3FileNameParser();

    public S3FileNameParser() {
        // S3 wants port 843, but the web service will use this by default

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

/**
 * @author Adrian Cole
 */
public class BlobStoreFileNameParser extends URLFileNameParser {
    public static final BlobStoreFileNameParser INSTANCE = new BlobStoreFileNameParser();