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 de.lemo.apps.services.security.UserRealm.java

public class UserRealm extends AuthorizingRealm {

    protected final Session session;

    public UserRealm(final Session session) {
        super(new MemoryConstrainedCacheManager());

From source file de.triology.blog.complexspermissions.ComplexPermissionRealm.java

public class ComplexPermissionRealm extends AuthorizingRealm {

    @Override
    protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection principalCollection) {
        SimpleAuthorizationInfo authorizationInfo = new SimpleAuthorizationInfo();
        authorizationInfo.addObjectPermissions(createFilePermissions());

From source file dxol.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file edu.pitt.dbmi.ccd.web.shiro.CCDAuthorizingRealm.java

/**
 *
 * May 14, 2015 1:57:20 PM
 *
 * @author Kevin V. Bui (kvb2@pitt.edu)
 */

From source file edu.upenn.cis.ppod.security.PPodRealm.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

From source file edu.usu.sdl.opencatalog.security.OpenAmRealm.java

/**
 *
 * @author dshurtleff
 */
public class OpenAmRealm extends AuthorizingRealm {

From source file edu.usu.sdl.openstorefront.security.HeaderRealm.java

/**
 * This is used to login based on Request Header info
 *
 * @author dshurtleff
 */
public class HeaderRealm extends AuthorizingRealm {

From source file edu.usu.sdl.openstorefront.security.OpenAmRealm.java

/**
 *
 * @author dshurtleff
 */
public class OpenAmRealm extends AuthorizingRealm {

From source file edu.wisc.nexus.auth.rut.realm.RemoteUserTokenAuthenticatingRealm.java

/**
 * Allows use of SVN tokens for authenticating with Nexus
 * 
 * @author Eric Dalquist
 * @version $Revision: 287 $
 */

From source file eu.eubrazilcc.lvl.storage.security.shiro.BaseAuthorizingRealm.java

/**
 * Provides common security realm methods that are used in this application. This class only implements authorization (access control) 
 * behavior and leaves authentication support (log-in) operations to subclasses. In addition, this class enables authentication caching 
 * based on EhCache, therefore the subclasses derived from this class MUST return the credentials securely obfuscated and NOT plaintext 
 * (raw) credentials. Credential matching is based on hashing comparison. 
 * @author Erik Torres <ertorser@upv.es>