Example usage for org.apache.wicket.request IRequestMapper interface-usage

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

Introduction

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

Usage

From source file com.googlecode.ounit.OunitRequestMapper.java

public class OunitRequestMapper implements IRequestMapper {
    //private final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(this.getClass());

    @Override
    public IRequestHandler mapRequest(Request request) {
        return null;

From source file fiftyfive.wicket.resource.MergedResourceMapper.java

/**
 * Maps a single, static URL to a list of resources. When that URL is requested, respond by
 * merging all the resources together by delegating to {@link MergedResourceRequestHandler}.
 * 
 * @since 3.0
 */

From source file fiftyfive.wicket.resource.SimpleCDN.java

/**
 * Enables a Wicket application to have its static resources proxied by a CDN, for example
 * by Amazon Cloudfront. This works by intercepting Wicket's default behavior for rendering
 * URLs of resource references, and then rewriting those URLs by prepending a CDN hostname
 * (or any arbitrary URL fragment). The web browser will therefore make requests to the
 * CDN host instead of the Wicket app.

From source file jp.xet.uncommons.wicket.utils.SimpleCDN.java

/**
 * Enables a Wicket application to have its static resources proxied by a CDN, for example
 * by Amazon Cloudfront. This works by intercepting Wicket's default behavior for rendering
 * URLs of resource references, and then rewriting those URLs by prepending a CDN hostname
 * (or any arbitrary URL fragment). The web browser will therefore make requests to the
 * CDN host instead of the Wicket app.

From source file name.martingeisse.wicket.application.PermanentRedirectMapper.java

/**
 * Intercepts requests for the specified "from" URL and produces a 301
 * MOVED PERMANENTLY to the "to" URL.
 */
public class PermanentRedirectMapper implements IRequestMapper {

From source file name.martingeisse.wicket.util.json.JsonRequestHandlerUrlCodingStrategy.java

/**
 * This mapper creates an instance of the specified {@link AbstractJsonRequestHandler}
 * class and uses it as the request handler.
 */
public class JsonRequestHandlerUrlCodingStrategy implements IRequestMapper {

From source file name.martingeisse.wicket.util.RequestMapperWrapper.java

/**
 * This class wraps an {@link IRequestMapper} and forwards all calls.
 * This allows to hot-replace the mapper.
 */
public class RequestMapperWrapper implements IRequestMapper {

From source file org.artifactory.webapp.wicket.application.VersionedSharedResourceUrlCodingStrategy.java

/**
 * @author Yoav Aharoni
 */
public class VersionedSharedResourceUrlCodingStrategy implements IRequestMapper {
    private static final Duration MAX_DURATION = Duration.days(365);
    private String mountPath;

From source file org.brixcms.web.BrixRequestMapper.java

public class BrixRequestMapper implements IRequestMapper {
    // ------------------------------ FIELDS ------------------------------

    public static final String WORKSPACE_PARAM = Brix.NS_PREFIX + "workspace";

    private static final Logger logger = LoggerFactory.getLogger(BrixRequestMapper.class);

From source file org.brixcms.web.BrixUrlMapper.java

public class BrixUrlMapper implements IRequestMapper {
    Logger logger = LoggerFactory.getLogger(BrixUrlMapper.class);

    /**
     * request cycle processor
     */