Package org.apache.activemq.shiro.subject

Examples of org.apache.activemq.shiro.subject.ConnectionSubjectResolver


     *
     * @param ctx the connection context
     * @return the {@code Subject} associated with the specified connection.
     */
    protected Subject getSubject(ConnectionContext ctx) {
        return new ConnectionSubjectResolver(ctx).getSubject();
    }
View Full Code Here


    public void setAuthenticationTokenFactory(AuthenticationTokenFactory authenticationTokenFactory) {
        this.authenticationTokenFactory = authenticationTokenFactory;
    }

    protected Subject getSubject(ConnectionReference conn) {
        return new ConnectionSubjectResolver(conn).getSubject();
    }
View Full Code Here

TOP

Related Classes of org.apache.activemq.shiro.subject.ConnectionSubjectResolver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.