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

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

Introduction

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

Usage

From source file com.intridea.io.vfs.provider.s3.S3FileName.java

public class S3FileName extends AbstractFileName {

    private final String s3BucketId;

    protected S3FileName(final String scheme, final String bucketId, final String path, final FileType type) {
        super(scheme, path, type);

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

public class MockFileName extends AbstractFileName {
    private final String rootFile;

    protected MockFileName(String scheme, String rootFile, String path, FileType type) {
        super(scheme, path, type);
        this.rootFile = rootFile;

From source file pl.otros.vfs.browser.FileNameWrapper.java

public class FileNameWrapper extends AbstractFileName {

    protected FileName fileName;

    public FileNameWrapper(FileName fileName) {
        super(fileName.getScheme(), fileName.getPath(), fileName.getType());

From source file org.pentaho.repositoryvfs.vfs.RepositoryVfsFileName.java

public class RepositoryVfsFileName extends AbstractFileName {

    public RepositoryVfsFileName(final String absPath, final FileType type) {
        super("repo", absPath, type);
    }