Example usage for org.apache.wicket.authorization.strategies.page SimplePageAuthorizationStrategy subclass-usage

List of usage examples for org.apache.wicket.authorization.strategies.page SimplePageAuthorizationStrategy subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.authorization.strategies.page SimplePageAuthorizationStrategy subclass-usage.

Usage

From source file dk.dma.arcticweb.site.AuthStrategy.java

/**
 * Simple authentication strategy
 */
public class AuthStrategy extends SimplePageAuthorizationStrategy {

    public AuthStrategy() {

From source file dk.frankbille.scoreboard.security.ScoreBoardAuthorizationStrategy.java

public class ScoreBoardAuthorizationStrategy extends SimplePageAuthorizationStrategy {

    public ScoreBoardAuthorizationStrategy() {
        super(SecureBasePage.class, BasePage.class);
    }

From source file dk.teachus.frontend.TeachUsAuthentication.java

public class TeachUsAuthentication extends SimplePageAuthorizationStrategy {

    public TeachUsAuthentication() {
        super(AuthenticatedBasePage.class, InfoPage.class);
    }

From source file ee.pri.rl.blog.web.page.auth.BlogAuthorizationStrategy.java

/**
 * Authorization strategy for the blog application.
 * 
 * @see SimplePageAuthorizationStrategy
 * @see BlogApplication
 * 

From source file org.modelibra.wicket.security.AppSimplePageAuthorizationStrategy.java

/**
 * App simple page authorization strategy.
 * 
 * @author Dzenan Ridjanovic
 * @version 2007-02-11
 */