Example usage for com.vaadin.server ConnectorResource interface-usage

List of usage examples for com.vaadin.server ConnectorResource interface-usage

Introduction

In this page you can find the example usage for com.vaadin.server ConnectorResource interface-usage.

Usage

From source file com.cms.utils.FileDownloader.java

/**
 * <code>FileResources</code> are files or directories on local filesystem. The
 * files and directories are served through URI:s to the client terminal and
 * thus must be registered to an URI context before they can be used. The
 * resource is automatically registered to the application when it is created.
 *

From source file com.foc.property.FCloudStoragePropertyResource.java

@SuppressWarnings("serial")
public class FCloudStoragePropertyResource implements ConnectorResource {

    private FCloudStorageProperty cloudStorageProperty = null;

    public FCloudStoragePropertyResource(FCloudStorageProperty property) {

From source file com.foc.vaadin.gui.components.BlobResource.java

@SuppressWarnings("serial")
//public class BlobResource extends FileResource{
public class BlobResource implements ConnectorResource {

    private InputStream is = null;
    private String fileName = null;

From source file org.lucidj.vaadinui.BundleResource.java

/**
 * <code>BundleResource</code> is a named resource accessed with the bundle.
 * 
 * This can be used to access resources such as icons, files, etc.
 * 
 * @see Bundle#getEntry(String)