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.channelsoft.assistant.service.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    private Logger logger = LoggerFactory.getLogger(getClass());

    protected AccountService accountService;

From source file com.charmyin.shiro.realm.jdbc.CustomJdbcRealm.java

/**
 * Realm that allows authentication and authorization via JDBC calls.  The default queries suggest a potential schema
 * for retrieving the user's password for authentication, and querying for a user's roles and permissions.  The
 * default queries can be overridden by setting the query properties of the realm.
 * <p/>
 * If the default implementation

From source file com.charmyin.shiro.realm.jdbc.JMongodbRealm.java

/**
 * Realm that allows authentication and authorization via JDBC calls.  The default queries suggest a potential schema
 * for retrieving the user's password for authentication, and querying for a user's roles and permissions.  The
 * default queries can be overridden by setting the query properties of the realm.
 * <p/>
 * If the default implementation

From source file com.citylife.backend.shiro.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    public static final String HASH_ALGORITHM = "SHA-1";
    public static final int HASH_INTERATIONS = 1024;

    /**

From source file com.cj.config.security.JpaAuthorizingRealm.java

@Component
public class JpaAuthorizingRealm extends AuthorizingRealm {

    @Autowired
    private AccountRepository accountRepository;

From source file com.codestudio.dorm.web.security.shiro.ShiroDataBaseRealm.java

/**
 * ShiroDataBaseRealm.java??TODO ??
 * 
 * @author mmy 201451 ?6:47:38
 */
public class ShiroDataBaseRealm extends AuthorizingRealm {

From source file com.conten.portal.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {
    private static Logger logger = LoggerFactory.getLogger(ShiroDbRealm.class);
    protected AccountService accountService;

    /**
     * ?,.

From source file com.coolerspark.whatsup.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

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

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file com.cssnb.commons.shiro.MyJdbcRealm.java

/**
 * Realm that allows authentication and authorization via JDBC calls.  The default queries suggest a potential schema
 * for retrieving the user's password for authentication, and querying for a user's roles and permissions.  The
 * default queries can be overridden by setting the query properties of the realm.
 * <p/>
 * If the default implementation