Example usage for org.apache.wicket.authroles.authentication AuthenticatedWebApplication subclass-usage

List of usage examples for org.apache.wicket.authroles.authentication AuthenticatedWebApplication subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.authroles.authentication AuthenticatedWebApplication subclass-usage.

Usage

From source file org.cyclop.web.webapp.WicketWebApplication.java

/** @author Maciej Miklas */
public class WicketWebApplication extends AuthenticatedWebApplication {

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

From source file org.devgateway.eudevfin.ui.common.spring.WicketSpringApplication.java

public class WicketSpringApplication extends AuthenticatedWebApplication implements ApplicationContextAware {

    private ApplicationContext springContext;

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

From source file org.devgateway.toolkit.forms.wicket.FormsWebApplication.java

/**
 * The web application class also serves as spring boot starting point by using
 * spring boot's EnableAutoConfiguration annotation and providing the main
 * method.
 *
 * @author Stefan Kloe, mpostelnicu

From source file org.jabox.webapp.pages.JaboxAuthenticatedWebApplication.java

/**
 * A role-authorized, authenticated web application in just a few lines of code.
 * 
 * @author Jonathan Locke
 */
public class JaboxAuthenticatedWebApplication extends AuthenticatedWebApplication {

From source file org.jabylon.rest.ui.wicket.JabylonApplication.java

/**
 * @author Johannes Utzig (jutzig.dev@googlemail.com)
 *
 */
public class JabylonApplication extends AuthenticatedWebApplication {

From source file org.onexus.ui.api.OnexusWebApplication.java

public class OnexusWebApplication extends AuthenticatedWebApplication {

    private static final String SERVER_URL = System.getenv("ONEXUS_SERVER_URL");

    public Class<? extends Page> getHomePage() {
        return ResourcesPage.class;

From source file org.onexus.website.api.WebsiteApplication.java

public class WebsiteApplication extends AuthenticatedWebApplication {

    private static final String SERVER_URL = System.getProperty("onexus.server.url");

    private String webPath;
    private ORI websiteOri;

From source file org.patientview.radar.web.RadarApplication.java

public class RadarApplication extends AuthenticatedWebApplication {
    // mainly used for display
    public static final String DATE_PATTERN = "dd-MMM-yyyy";
    // mainly used for form input
    public static final String DATE_PATTERN2 = "dd-MM-yyyy";

From source file org.webconsole.app.WebConsoleApplication.java

/**
 * Root class for wicket.
 */
public abstract class WebConsoleApplication extends AuthenticatedWebApplication {

    @Override

From source file org.wicketstuff.wicket.servlet3.auth.ServletContainerAuthenticatedWebApplication.java

/**
 * A web application subclass that does role-based authentication. This class
 * requires authentication to be configured using the Servlet Container.
 *
 * @author jsarman
 */