Example usage for org.apache.wicket.request.resource IResource interface-usage

List of usage examples for org.apache.wicket.request.resource IResource interface-usage

Introduction

In this page you can find the example usage for org.apache.wicket.request.resource IResource interface-usage.

Usage

From source file de.tudarmstadt.ukp.clarin.webanno.support.FileSystemResource.java

public class FileSystemResource implements IResource {
    private static final long serialVersionUID = 6435457858590524482L;

    private final File file;

    public FileSystemResource(File aFile) {

From source file guru.mmp.application.web.resources.InjectableResource.java

/**
 * The <code>InjectableResource</code> provides a base class for resources that wish to use Spring
 * Dependency Injection.
 *
 * @author Marcus Portmann
 */

From source file org.devgateway.toolkit.forms.util.FolderContentResource.java

/**
 * This is a simple resource that allows us to one file within a folder, the
 * file name is given as URL parameter
 * 
 * WARNING, these files are UNPROTECTED, i usually use this to share folders
 * that contain only shareable items (like temporary export folders) DO NOTSHARE

From source file org.sturmm.wicketless.resource.LessCssResource.java

/**
 * 
 * Simple implementation of {@link IResource} by extending
 * {@link ByteArrayResource}. Creates {@link ClasspathLessSource} and delivers
 * it's css as byte array.
 * 

From source file org.wicketstuff.html5.eventsource.EventSourceResource.java

/**
 * A IResource that supports the response protocol of Server Side Events
 *
 * @since 6.0
 */
public abstract class EventSourceResource implements IResource {

From source file org.wicketstuff.rest.lambda.resource.SimpleLambdaResource.java

/**
 * Basic {@link IResource} that uses a {@link java.util.function.Consumer} to serve
 * the request.
 * 
 * @author andrea
 *

From source file org.wicketstuff.rest.lambda.resource.TextOutputLambdaResource.java

/**
 * {@link IResource} that uses a {@link java.util.function.Function} to serve
 * the request. The result of this function (a generic Object) is then written 
 * as string to the web response. A second function is provided to transform 
 * the result a textual representation.
 * 

From source file org.wicketstuff.rest.resource.AbstractRestResource.java

/**
 * Base class to build a resource that serves REST requests.
 *
 * @author andrea del bene
 *
 */