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 io.buji.pac4j.ClientRealm.java

/**
 * This realm implementation is dedicated to authentication. It acts on
 * credentials after the user authenticates at the provider and finishes the
 * authentication process by getting the user profile from the provider.
 *
 * @author Jerome Leleu

From source file io.buji.pac4j.realm.Pac4jRealm.java

/**
 * Realm based on pac4j token (authentication has already occurred).
 *
 * @author Jerome Leleu
 * @since 2.0.0
 */

From source file io.github.dadarom.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file io.github.howiefh.jeews.modules.sys.security.realm.StatelessRealm.java

/**
 *
 *
 * @author howiefh
 */
public class StatelessRealm extends AuthorizingRealm {

From source file io.github.nail2008.cookbook_bootstrap.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file io.starter.security.JdbcRealm.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

From source file JavaMvc.Config.SampleRealm.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 kikky.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file lib.security.ServerRestInterfaceRealm.java

/**
 * Shiro Realm implementation that uses a Graylog2-server as the source of the subject's information.
 */
@Singleton
public class ServerRestInterfaceRealm extends AuthorizingRealm {
    private static final Logger log = LoggerFactory.getLogger(ServerRestInterfaceRealm.class);

From source file me.leep.wf.services.system.impl.ShiroRealmImpl.java

/**
 * http://shiro.apache.org/java-authentication-guide.html
 * 
 * Subject Security specific user 'view' of an application user. It can be a
 * human being, a third-party process, a server connecting to you application
 * application, or even a cron job. Basically, it is anything or anyone