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

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

Introduction

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

Usage

From source file de.invesdwin.nowicket.application.auth.AWebSession.java

/**
 * Basic authenticated web session. Subclasses must provide a method that authenticates the session based on a username
 * and password, and a method implementation that gets the Roles
 * 
 */
@NotThreadSafe

From source file org.apache.openmeetings.web.app.WebSession.java

public class WebSession extends AbstractAuthenticatedWebSession implements IWebSession {
    private static final long serialVersionUID = 1L;
    public static final int MILLIS_IN_MINUTE = 60000;
    public static final String ISO8601_FORMAT_STRING = "yyyy-MM-dd'T'HH:mm:ssZ";
    public static final List<String> AVAILABLE_TIMEZONES = Arrays.asList(TimeZone.getAvailableIDs());
    public static final Set<String> AVAILABLE_TIMEZONE_SET = new LinkedHashSet<String>(AVAILABLE_TIMEZONES);

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

public class OnexusWebSession extends AbstractAuthenticatedWebSession implements IAuthenticatedSession {

    public static final String APPLICATION_POLICY_NAME = "onexus";

    public OnexusWebSession(Request request) {
        super(request);

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

public class WebsiteSession extends AbstractAuthenticatedWebSession implements IAuthenticatedSession {

    public static final String APPLICATION_POLICY_NAME = "onexus";

    public WebsiteSession(Request request) {
        super(request);

From source file tg.adn.precord.core.web.session.PrecordSession.java

/**
 *
 * @author cagecfi
 */
public class PrecordSession extends AbstractAuthenticatedWebSession {