Example usage for org.apache.shiro.session.mgt SessionManager interface-usage

List of usage examples for org.apache.shiro.session.mgt SessionManager interface-usage

Introduction

In this page you can find the example usage for org.apache.shiro.session.mgt SessionManager interface-usage.

Usage

From source file org.apache.activemq.shiro.session.mgt.DisabledSessionManager.java

/**
 * @since 5.10.0
 */
public class DisabledSessionManager implements SessionManager {

    @Override

From source file org.usergrid.rest.security.shiro.session.HttpRequestSessionManager.java

/**
 * Intended to keep session request-scoped and therefore not persist them across
 * multiple requests - a user must login on each request. This necessarily means
 * that a mechanism like form-based authentication isn't viable, but the
 * intention is primarily for uses in stateless apis.
 */

From source file uk.q3c.krail.core.shiro.VaadinSessionManager.java

/**
 * A {@link SessionManager} implementation that uses the {@link VaadinSession} for the current user to common and locate the Shiro {@link Session}. This
 * tightly ties the Shiro security Session lifecycle to that of the VaadinSession allowing expiration, persistence, and clustering to be handled only in the
 * Vaadin configuration rather than be duplicated in both the Vaadin and Shiro configuration.
 *
 * @author mpilone