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

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

Introduction

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

Usage

From source file almira.sample.web.MainApplication.java

/**
 * Wicket application.
 */
@Component
public class MainApplication extends WebApplication {

From source file at.ait.dme.yuma.suite.framework.YUMASuite.java

/**
 * The entry point for the YUMA Suite Wicket Frontend.
 * 
 * @author Rainer Simon
 */
public class YUMASuite extends WebApplication {

From source file at.molindo.esi4j.example.web.WicketApplication.java

/**
 * Application object for your web application. If you want to run this
 * application without deploying, run the Start class.
 *
 * @see at.molindo.esi4j.example.Start#main(String[])
 */

From source file at.molindo.wicketutils.utils.DummyApplication.java

public class DummyApplication extends WebApplication {

    /**
     * use {@link #DummyApplication()}
     */
    @Deprecated

From source file au.org.theark.web.application.BaseApplication.java

public abstract class BaseApplication extends WebApplication {
    static final Logger log = LoggerFactory.getLogger(BaseApplication.class);

    @Override
    protected void init() {
        super.init();

From source file ch.qos.mistletoe.test.WebRunnerApplication.java

public class WebRunnerApplication extends WebApplication {

    @Override
    public Class<TestReportPage> getHomePage() {
        return TestReportPage.class;
    }

From source file ch.tkuhn.nanobrowser.NanobrowserApplication.java

public class NanobrowserApplication extends WebApplication {

    private static Properties properties = new Properties();

    static {
        try {

From source file com.aplombee.examples.WicketApplication.java

/**
 * Application object for your web application. If you want to run this application without deploying, run the Start class.
 * 
 * @see com.aplombee.Start#main(String[])
 */
public class WicketApplication extends WebApplication {

From source file com.axway.ats.testexplorer.TestExplorerApplication.java

/**
 * Application object for the Test Explorer web application
 */
public class TestExplorerApplication extends WebApplication {

    private static final Logger LOG = Logger.getLogger(TestExplorerApplication.class);

From source file com.blogspot.chicchiricco.c3wicketdemo.DemoWebapp.java

public class DemoWebapp extends WebApplication {

    @Override
    public Class<? extends Page> getHomePage() {
        return Homepage.class;
    }