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

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

Introduction

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

Usage

From source file abid.password.wicket.MutablePasswordSession.java

public class MutablePasswordSession extends AuthenticatedWebSession {

    private static final long serialVersionUID = 1L;

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

From source file biz.turnonline.ecosystem.origin.frontend.FrontendSession.java

/**
 * TODO look at {@link AuthenticatedWebSession#isSignedIn()} and try to employ.
 *
 * @author <a href="mailto:jozef.pohorelec@ctoolkit.org">Jozef Pohorelec</a>
 */
public class FrontendSession extends AuthenticatedWebSession {

From source file ca.travelagency.authentication.AuthenticatedSession.java

public class AuthenticatedSession extends AuthenticatedWebSession {
    private static final long serialVersionUID = 1L;

    @SpringBean
    protected SystemUserService systemUserService;

From source file com.adamjan.AuthorizedSession.java

/**
 * The MIT License
 * <p/>
 * Copyright (c) 2013 Adam Smolarek
 * <p/>
 * Permission is hereby granted, free of charge, to any person obtaining a copy

From source file com.apachecon.memories.session.MemoriesWebSession.java

public class MemoriesWebSession extends AuthenticatedWebSession {

    private static final long serialVersionUID = 4698773864853366747L;
    private Properties users;
    private Roles roles;

From source file com.barchart.kerberos.server.security.zMyAuthenticatedWebSession.java

/**
 * Authenticated session subclass. Note that it is derived from AuthenticatedWebSession which is
 * defined in the auth-role module.
 * 
 * @author Jonathan Locke
 */

From source file com.barchart.kerberos.server.ui.DomainSession.java

/**
 * Authenticated session subclass. Note that it is derived from
 * AuthenticatedWebSession which is defined in the auth-role module.
 * 
 * @author Jonathan Locke
 */

From source file com.copperarrow.auth.SecureWebSession.java

/**
 *
 * @author dbeer
 */
public class SecureWebSession extends AuthenticatedWebSession {
    private static Logger logger = LogManager.getLogger(SecureWebSession.class);

From source file com.cubeia.backoffice.web.BackofficeAuthSession.java

public class BackofficeAuthSession extends AuthenticatedWebSession {
    private static final long serialVersionUID = 1L;
    private Logger log = LoggerFactory.getLogger(getClass());

    private String userName;
    private Roles roles;

From source file com.evolveum.midpoint.web.security.MidPointAuthWebSession.java

/**
 * @author lazyman
 */
public class MidPointAuthWebSession extends AuthenticatedWebSession {

    private static final Trace LOGGER = TraceManager.getTrace(MidPointAuthWebSession.class);