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 com.thjug.bgile.security.JpaRealm.java

/**
 *
 * @author @nuboat
 */
public class JpaRealm extends AuthorizingRealm {

From source file com.tianxiaxinyong.web.security.shrio.ShiroAuthorizingRealm.java

/**
 * shiro??
 * @author yuqs
 * @since 0.1
 */
public class ShiroAuthorizingRealm extends AuthorizingRealm {

From source file com.tiger.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file com.tn.exam.shiro.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    @Override
    protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principals) {
        return null;
    }

From source file com.trs.xmtdb.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file com.uestc.news.service.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file com.usermanager.base.service.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    @Autowired
    protected AccountService accountService;

    /**

From source file com.uunemo.security.NemoRealm.java

/**
 * The Spring/Hibernate sample application's one and only configured Apache Shiro Realm.
 *
 * <p>Because a Realm is really just a security-specific DAO, we could have just made Hibernate calls directly
 * in the implementation and named it a 'HibernateRealm' or something similar.</p>
 *

From source file com.vsc.dayspring.security.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {
    public static final String HASH_ALGORITHM = "SHA-1";
    public static final int HASH_INTERATIONS = 1024;
    public static final int SALT_SIZE = 8;
    /* systemProperties  app,????? Key */
    private static final String KEY_APP_DOMAIN = "appDomain";

From source file com.webarch.common.shiro.authentication.ShiroRealm.java

/**
 * functional describe:????
 *
 * @author DR.YangLong [410357434@163.com]
 * @version 1.0 2015/5/14 13:38
 */