Example usage for org.apache.shiro.realm AuthorizingRealm subclass-usage

List of usage examples for org.apache.shiro.realm AuthorizingRealm subclass-usage

Introduction

In this page you can find the example usage for org.apache.shiro.realm AuthorizingRealm subclass-usage.

Usage

From source file org.lyl.janty.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file org.maodian.flyingcat.im.shiro.MongoRealm.java

/**
 * @author Cole Wen
 *
 */
public class MongoRealm extends AuthorizingRealm {
    private MongoTemplate template;

From source file org.maodian.flyingcat.im.shiro.SQLRealm.java

/**
 * @author Cole Wen
 *
 */
public class SQLRealm extends AuthorizingRealm {
    @PersistenceContext

From source file org.mobicents.servlet.restcomm.entities.shiro.Realm.java

/**
 * @author quintana.thomas@gmail.com (Thomas Quintana)
 */
@ThreadSafe
public final class Realm extends AuthorizingRealm {
    private volatile Map<String, SimpleRole> roles;

From source file org.mobicents.servlet.sip.restcomm.http.security.Realm.java

/**
 * @author quintana.thomas@gmail.com (Thomas Quintana)
 */
@ThreadSafe
public final class Realm extends AuthorizingRealm {
    private volatile Map<String, SimpleRole> roles;

From source file org.ms123.common.permission.MyRealm.java

/**
 */
public class MyRealm extends AuthorizingRealm {

    protected final Map<String, SimpleAccount> users;

From source file org.myplay.service.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file org.ng12306.web.system.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file org.obiba.agate.security.AgateTokenRealm.java

/**
 * Realm for users defined in Agate's database accessing using an OAuth2 token (ticket).
 */
@Component
public class AgateTokenRealm extends AuthorizingRealm {
    @Inject

From source file org.obiba.agate.security.AgateUserRealm.java

/**
 * Realm for users defined in opal's own users database.
 */
@Component
public class AgateUserRealm extends AuthorizingRealm {