Example usage for org.apache.shiro.subject.support DelegatingSubject subclass-usage

List of usage examples for org.apache.shiro.subject.support DelegatingSubject subclass-usage

Introduction

In this page you can find the example usage for org.apache.shiro.subject.support DelegatingSubject subclass-usage.

Usage

From source file ddf.security.impl.SubjectImpl.java

@SuppressWarnings("squid:S2055" /* Object is never serialized; it is serializable for contract purposes only.*/)
public class SubjectImpl extends DelegatingSubject implements Subject {

    private static final long serialVersionUID = 1L;

    public SubjectImpl(PrincipalCollection principals, boolean authenticated, String host, Session session,

From source file org.obiba.opal.core.security.SessionDetachedSubject.java

/**
 * Shiro's DelegatingSubject impl that is not tied to a session, but only to the principals of a given original session.
 */
public class SessionDetachedSubject extends DelegatingSubject {

    SessionDetachedSubject(DelegatingSubject source) {