Example usage for org.apache.wicket.protocol.http IWebApplicationFactory interface-usage

List of usage examples for org.apache.wicket.protocol.http IWebApplicationFactory interface-usage

Introduction

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

Usage

From source file com.caucho.wicket.ResinApplicationFactory.java

/**
 * Factory for creating wicket application objects with Resin injection.
 */
public class ResinApplicationFactory implements IWebApplicationFactory {
    private static final L10N L = new L10N(ResinApplicationFactory.class);

From source file com.gt.debugconsole.ConsoleApplicationFactory.java

/**
 * 
 * @author Gbor Horvth
 */
public class ConsoleApplicationFactory implements IWebApplicationFactory {

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

/**
 * @author jfk
 * @date Aug 2, 2011 7:57:34 AM
 * @since 1.0
 * 
 */

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 jdave.wicket.selenium.SeleniumTestApplicationFactory.java

/**
 * @author Janne Hietamäki
 */
public class SeleniumTestApplicationFactory implements IWebApplicationFactory {

    public WebApplication createApplication(WicketFilter filter) {

From source file jp.comuri.wicket.PicoContainerWebApplicationFactory.java

public class PicoContainerWebApplicationFactory implements IWebApplicationFactory {
    private static final Logger LOGGER = LoggerFactory.getLogger(PicoContainerWebApplicationFactory.class);

    public WebApplication createApplication(WicketFilter filter) {
        PicoContainer container;

From source file org.jabylon.rest.ui.JabylonFilter.java

public class JabylonFilter extends WicketFilter implements IWebApplicationFactory {

    private String rootRedirect = null;

    @Override
    protected IWebApplicationFactory getApplicationFactory() {

From source file org.ops4j.pax.wicket.api.PaxWicketApplicationFactory.java

public final class PaxWicketApplicationFactory implements IWebApplicationFactory, ManagedService {

    private static final String[] APPLICATION_FACTORY_SERVICE_NAMES = { PaxWicketApplicationFactory.class.getName(),
            ManagedService.class.getName() };

    private final BundleContext bundleContext;

From source file org.ops4j.pax.wicket.internal.PaxWicketApplicationFactory.java

/**
 * An internal wrapper for the {@link WebApplicationFactory} exported by clients who want to register an application.
 * This class adds all the logic to extract the required properties from the osgi service and wrapping the created
 * application factory with the classloading, injection and other tricks required to run the application.
 */
public class PaxWicketApplicationFactory implements IWebApplicationFactory {