Example usage for org.apache.wicket.protocol.http WicketFilter subclass-usage

List of usage examples for org.apache.wicket.protocol.http WicketFilter subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.protocol.http WicketFilter subclass-usage.

Usage

From source file codetroopers.wicket.web.HotReloadingWicketFilter.java

/**
 * Simple wicket filter allowing hot reload and autocompile of sources  la play!
 * Proof of concept
 *
 * TODO :
 *  # use wicket application mode to trigger incremental compile only when needed

From source file com.aipo.mobycket.wicket.protocol.http.WicketFilter.java

/**
 * 
 */
public class WicketFilter extends org.apache.wicket.protocol.http.WicketFilter {

    @SuppressWarnings("unused")

From source file com.gitblit.dagger.DaggerWicketFilter.java

/**
 * Uses Dagger to manually inject dependencies into a Wicket filter.
 * This class is useful for servlet containers that offer CDI and are
 * confused by Dagger.
 *
 * @author James Moger

From source file com.gitblit.wicket.GitblitWicketFilter.java

/**
 *
 * Customization of the WicketFilter to allow smart browser-side caching of
 * some pages.
 *
 * @author James Moger

From source file com.github.ilmoeuro.hackmikkeli2016.ui.HmWicketFilter.java

@WebFilter(value = "/*", initParams = {
        @WebInitParam(name = "applicationClassName", value = "com.github.ilmoeuro.hackmikkeli2016.ui.HmApplication"),
        @WebInitParam(name = "filterMappingUrlPattern", value = "/*") })
public class HmWicketFilter extends WicketFilter {

}

From source file com.github.javawithmarcus.wicket.cdi.CdiWicketFilter.java

/**
 * CdiWicketFilter is a Cdi Enabled version of WicketFilter. It uses the Managed Version of
 * {@link CdiWebApplicationFactory} therefore the WebApplication is also Managed via the Cdi container.
 *
 * @author jsarman
 */

From source file com.googlesource.gerrit.plugins.gitblit.GerritWicketFilter.java

@Singleton
public class GerritWicketFilter extends WicketFilter {
    private static final Logger log = LoggerFactory.getLogger(GerritWicketFilter.class);

    private final DynamicItem<WebSession> webSession;
    @SuppressWarnings("unused")

From source file com.jolira.wicket.guicier.GuicierWicketFilter.java

/**
 * Create a wicket filter. The filter deals with the fact that wicket has to
 * know the primary filter mapping and set the factory.
 * 
 * @author jfk
 * @date Aug 2, 2011 7:14:13 AM

From source file com.mastfrog.acteur.wicket.FakeWicketFilter.java

/**
 * Wicket's API requires that a WicketFilter instance be present even when
 * it is not running in a servlet container, so this is a mock that allows
 * Wicket to start.
 *
 * @author Tim Boudreau

From source file de.micromata.genome.gwiki.sample.wicket.MyWicketFilter.java

public class MyWicketFilter extends WicketFilter {

    @Override
    public void doFilter(ServletRequest arg0, ServletResponse arg1, FilterChain arg2)
            throws IOException, ServletException {