Example usage for org.apache.wicket Page subclass-usage

List of usage examples for org.apache.wicket Page subclass-usage

Introduction

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

Usage

From source file dk.teachus.frontend.pages.HomePage.java

public class HomePage extends Page {
    private static final long serialVersionUID = 1L;

    public HomePage() {
        Person person = TeachUsSession.get().getPerson();

From source file org.artifactory.webapp.wicket.page.browse.home.ArtifactsHomePage.java

/**
 * @author Yoav Aharoni
 */
public class ArtifactsHomePage extends Page {
    public ArtifactsHomePage() {
        setVersioned(false);

From source file org.artifactory.webapp.wicket.service.authentication.LogoutService.java

/**
 * @author Yoav Aharoni
 */
public class LogoutService extends Page {
    @Override
    protected void onRender() {

From source file org.wicketstuff.security.components.SecurePage.java

/**
 * Basic implementation of a SecurePage. Note that any check added to this page using
 * {@link #setSecurityCheck(ISecurityCheck)} is too late to be considered for
 * {@link IAuthorizationStrategy#isInstantiationAuthorized(Class)} so please check your wasp
 * implementation for details on how to do that. Or see {@link ClassAuthorizationStrategy} for one
 * way of doing it.

From source file sf.wicklet.gwt.site.server.pages.s.AdminService.java

/** Provide ajax service at /s/service/ that require no session/conversation state. */
@RequireHttps
@AuthorizeInstantiation("admin")
public class AdminService extends Page {

    private static final long serialVersionUID = 1L;

From source file sf.wicklet.gwt.site.server.pages.s.Service.java

/** Provide ajax service at /s/service/ that require no session/conversation state. */
public class Service extends Page {

    private static final long serialVersionUID = 1L;
    public static final String PATH = "/s/service";
    public static final String PARAM_ACTION = "action";