Example usage for org.apache.commons.vfs2 FileObject interface-usage

List of usage examples for org.apache.commons.vfs2 FileObject interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.vfs2 FileObject interface-usage.

Usage

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

public class FileObjectWrapper implements FileObject {
    protected FileObject parent;

    public FileObjectWrapper(FileObject parent) {
        super();
        this.parent = parent;

From source file poisondog.commons.vfs.DecoratedFileObject.java

/**
 * @author Adam Huang <poisondog@gmail.com>
 */
public class DecoratedFileObject implements FileObject {
    private FileObject decoratedFileObject;

From source file junrar.vfs2.provider.rar.RARFileObject.java

/**
 * A file in a RAR file system.
 * 
 * @author <a href="http://www.rogiel.com">Rogiel</a>
 */
public class RARFileObject extends AbstractFileObject<RARFileSystem> implements FileObject {

From source file com.github.junrar.vfs2.provider.rar.RARFileObject.java

/**
 * A file in a RAR file system.
 * 
 * @author <a href="http://www.rogiel.com">Rogiel</a>
 */
public class RARFileObject extends AbstractFileObject implements FileObject {

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

/**
 * Mock file implementation
 */
public class MockFile extends AbstractFileObject implements FileObject {

    private static Log log = LogFactory.getLog(MockFile.class);

From source file org.pentaho.platform.pdi.vfs.MetadataToMondrianVfsFileObject.java

public class MetadataToMondrianVfsFileObject implements FileObject {

    @Override
    public int compareTo(FileObject o) {
        throw new UnsupportedOperationException();
    }

From source file com.gs.obevo.util.vfs.FileObject.java

/**
 * Wrapper for the FileObject of commons VFS. Can represent either a file-system file or classpath resource file.
 *
 * See FileRetrievalModeTest for the tests on this class.
 */
public class FileObject implements org.apache.commons.vfs2.FileObject {

From source file org.pentaho.di.core.vfs.SftpFileObjectWithWindowsSupport.java

public class SftpFileObjectWithWindowsSupport implements FileObject {

    //icacls windows command permissions
    private static final String FULL_ACCESS = "(F)";
    private static final String MODIFY_ACCESS = "(M)";
    private static final String READ_AND_EXECUTE_ACCESS = "(RX)";

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

public class RepositoryVfsFileObject implements FileObject {
    protected final RepositoryVfsProvider provider;
    protected final String path;
    protected FileType type = FileType.FILE_OR_FOLDER;
    private RepositoryFile repositoryFile;