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 MyRealm.java

/**
 */
public class MyRealm extends AuthorizingRealm {

    public MyRealm() {
    }

From source file $.ShiroDbRealm.java

    public class ShiroDbRealm extends AuthorizingRealm {

        protected AccountService accountService;

        /**
         * ?,.

From source file aaa.realms.MySQLRealm.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 action.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    @Autowired
    private UserService userService;
    @Autowired
    private RoleService roleService;

From source file annis.security.ANNISUserRealm.java

/**
 * A realm for the property based user authentification and authorization
 * pattern used by ANNIS.
 *
 * @author Thomas Krause <krauseto@hu-berlin.de>
 */

From source file apm.modules.sys.security.SystemAuthorizingRealm.java

/**
 * ?
 * @author resite
 * @version 2013-5-29
 */
@Service

From source file au.org.theark.core.security.AAFRealm.java

/**
 * Realm to allow authorisation through the Australian Access Federation (AAF).<br>
 * The main difference to the ArkLdapRealm, is that there is no CredentialMatcher (handled by AAF login redirects)
 * 
 * @author cellis
 * 

From source file au.org.theark.core.security.ArkLdapRealm.java

/**
 * @author nivedann
 * 
 */
@SuppressWarnings("unchecked")
@Component

From source file b4f.seguridad.ShiroAuthorizingRealm.java

/**
 * Shiro realm that pull users and roles from Roller's manager interfaces.
 *
 * @author snoopdave
 */
public class ShiroAuthorizingRealm extends AuthorizingRealm {

From source file base.web.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    @Autowired
    private UserService userService;
    @Autowired
    private RoleService roleService;