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 org.apache.hadoop.gateway.shirorealm.KnoxPamRealm.java

/**
 * A Unix-style
 * <a href="http://www.kernel.org/pub/linux/libs/pam/index.html">PAM</a>
 * {@link org.apache.shiro.realm.Realm Realm} that uses
 * <a href="https://github.com/kohsuke/libpam4j">libpam4j</a> to interface with
 * the PAM system libraries.

From source file org.apache.mycat.advisor.common.security.shiro.authentication.ShiroRealm.java

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

From source file org.apache.shindig.sample.shiro.SampleShiroRealm.java

/**
 * A Sample Shiro Realm that uses the JSON DB to get passwords
 *
 */
public class SampleShiroRealm extends AuthorizingRealm {
    // HACK, apache.shiro relies upon no-arg constructors..

From source file org.apache.usergrid.chop.webapp.service.shiro.ShiroRealm.java

public class ShiroRealm extends AuthorizingRealm {

    private static final Logger LOG = LoggerFactory.getLogger(ShiroRealm.class);

    private static final String DEFAULT_USER = "user";
    private static final String DEFAULT_PASSWORD = "pass";

From source file org.apache.usergrid.persistence.qakka.api.impl.ShiroAuthRealm.java

/**
 * Created by Dave Johnson (snoopdave@apache.org) on 12/1/16.
 */
public class ShiroAuthRealm extends AuthorizingRealm {

    private QakkaStandaloneFig qakkaStandaloneFig;

From source file org.apache.usergrid.security.shiro.Realm.java

public class Realm extends AuthorizingRealm {
    private static final Logger logger = LoggerFactory.getLogger(Realm.class);

    public final static String ROLE_SERVICE_ADMIN = "service-admin";
    public final static String ROLE_ADMIN_USER = "admin-user";
    public final static String ROLE_ORGANIZATION_ADMIN = "organization-admin";

From source file org.apache.zeppelin.realm.jwt.KnoxJwtRealm.java

/**
 * Created for org.apache.zeppelin.server.
 */
public class KnoxJwtRealm extends AuthorizingRealm {
    private static final Logger LOGGER = LoggerFactory.getLogger(KnoxJwtRealm.class);

From source file org.apache.zeppelin.realm.kerberos.KerberosRealm.java

/**
 * The {@link KerberosRealm} implements the Kerberos SPNEGO
 * authentication mechanism for HTTP via Shiro.
 * <p>
 * The Shiro configuration section should be configured as:
 * [main]

From source file org.apache.zeppelin.realm.PamRealm.java

/**
 * An {@code AuthorizingRealm} based on libpam4j.
 */
public class PamRealm extends AuthorizingRealm {
    private static final Logger LOG = LoggerFactory.getLogger(PamRealm.class);

From source file org.apache.zeppelin.realm.ZeppelinHubRealm.java

/**
 * A {@code Realm} implementation that uses the ZeppelinHub to authenticate users.
 *
 */
public class ZeppelinHubRealm extends AuthorizingRealm {
    private static final Logger LOG = LoggerFactory.getLogger(ZeppelinHubRealm.class);