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

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

Introduction

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

Usage

From source file org.pentaho.platform.repository.solution.filebased.DecoratedFileContent.java

/**
 * Useful when you need to override a single method in a FileContent object
 */
public class DecoratedFileContent implements FileContent {
    private FileContent fileContent;

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

public class MetadataToMondrianVfsFileContent implements FileContent {

    private MetadataToMondrianVfsFileObject fileObject;

    private InputStream inputStream = null;

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

public class RepositoryVfsFileContent implements FileContent {
    private final RepositoryVfsFileObject source;

    public RepositoryVfsFileContent(RepositoryVfsFileObject source) {
        this.source = source;
    }