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.obiba.opal.core.unit.security.FunctionalUnitRealm.java

@Component
public class FunctionalUnitRealm extends AuthorizingRealm {

    private static final Logger log = LoggerFactory.getLogger(FunctionalUnitRealm.class);

    @Autowired

From source file org.obiba.shiro.realm.AbstractHttpAuthenticatingRealm.java

public abstract class AbstractHttpAuthenticatingRealm extends AuthorizingRealm {

    @Override
    protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {
        Session session = getSession(getSessionId(token));
        if (session == null) {

From source file org.obiba.shiro.realm.SudoRealm.java

@Component
public class SudoRealm extends AuthorizingRealm {

    private final AuthenticationInfo simpleAccount = new SimpleAccount(SudoPrincipal.INSTANCE, null, getName());

    public SudoRealm() {

From source file org.obm.imap.archive.authentication.ImapArchiveAuthorizingRealm.java

@Singleton
public class ImapArchiveAuthorizingRealm extends AuthorizingRealm {

    @Inject
    private AuthenticationService authenticationService;
    @Inject

From source file org.obm.provisioning.authentication.ObmJDBCAuthorizingRealm.java

@Singleton
public class ObmJDBCAuthorizingRealm extends AuthorizingRealm {

    @Inject
    private AuthenticationService authenticationService;

From source file org.one.gene.domain.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    private static final Logger logger = LoggerFactory.getLogger(ShiroDbRealm.class);

    protected AccountService accountService;

From source file org.onehippo.forge.security.support.shiro.realm.HippoRepositoryRealm.java

/**
 * Realm that allows authentication and authorization against Hippo Repository security data store.
 * <p>
 * This realm supports caching by extending from {@link org.apache.shiro.realm.AuthorizingRealm}.
 * </p>
 */

From source file org.opendaylight.aaa.shiro.realm.KeystoneAuthRealm.java

/**
 * KeystoneAuthRealm is a Shiro Realm that authenticates users from
 * OpenStack Keystone.
 */
public class KeystoneAuthRealm extends AuthorizingRealm {

From source file org.opendaylight.aaa.shiro.realm.MoonRealm.java

/**
 * MoonRealm is a Shiro Realm that authenticates users from OPNFV/moon platform
 * @author Alioune BA alioune.ba@orange.com
 *
 */
public class MoonRealm extends AuthorizingRealm {

From source file org.opendaylight.aaa.shiro.realm.RadiusRealm.java

/**
 * Implementation of a Radius AuthorizingRealm.
 *
 * @author Ryan Goulding (ryandgoulding@gmail.com)
 */
public class RadiusRealm extends AuthorizingRealm {