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

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

Introduction

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

Usage

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

/**
 * Implementation of {@link org.apache.commons.vfs.FileObject} for ISO9660 (.iso) files.
 */
public class IsoFileObject extends AbstractFileObject {
    private ISO9660FileEntry entry;
    private FileType type;

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

public class HDFSFileObject extends AbstractFileObject implements FileObject {

    private FileSystem hdfs;

    protected HDFSFileObject(final FileName name, final HDFSFileSystem fileSystem) throws FileSystemException {
        super(name, fileSystem);

From source file com.github.stephenc.javaisotools.vfs.provider.iso.IsoFileObject.java

/**
 * Implementation of {@link org.apache.commons.vfs.FileObject} for ISO9660 (.iso) files.
 */
public class IsoFileObject extends AbstractFileObject {

    private Iso9660FileEntry entry;

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

/**
 * Implementation of the virtual S3 file system object using the Jets3t library.
 *
 * @author Matthias L. Jugel
 */
public class Jets3tFileObject extends AbstractFileObject {

From source file org.efaps.webdav4vfs.test.ramvfs.RamFileObject.java

/**
 * A RAM File contains a single RAM FileData instance, it provides methods to
 * access the data by implementing FileObject interface.
 *
 * @author The eFaps Team
 * @author <a href="http://commons.apache.org/vfs/team-list.html">Apache Commons VFS team</a>

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

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

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

/**
 * Implementation of the virtual S3 file system object using the Jets3t library.
 *
 * @author Matthias L. Jugel
 * @version $Revision:$ $Date:$
 */

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

public class MavenFileObject extends AbstractFileObject implements FileObject {

    private URI uri;
    private MavenFileSystem fileSystem;

    protected MavenFileObject(FileName name, MavenFileSystem fs) {

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

public class S3FileObject extends AbstractFileObject implements FileObject {

    public static final String DELIMITER = "/";
    //  private S3Service service = null;
    private S3Bucket bucket = null;
    private S3FileSystem fileSystem = null;

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

/**
 * Implementation of Apache VFS FileObject to access the JasperServer repository
 *
 * @author swood
 */
public class RepositoryFileObject extends AbstractFileObject implements FileObject {