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.opendaylight.aaa.shiro.realm.TACACSRealm.java

/**
 *
 * @author Ryan Goulding (ryandgoulding@gmail.com)
 *
 */
public class TACACSRealm extends AuthorizingRealm {

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

/**
 * TokenAuthRealm is an adapter between the AAA shiro subsystem and the existing
 * <code>TokenAuth</code> mechanisms. Thus, one can enable use of
 * <code>IDMStore</code> and <code>IDMMDSALStore</code>.
 *
 * @author Ryan Goulding (ryandgoulding@gmail.com)

From source file org.ow2.proactive.iam.core.realms.LdapRealm.java

/**
 * @author ActiveEon Team
 * @since 16/02/17
 *
 * This class simply combines features from  DefaultLdapRealm , AbstractLdapRealm, and ActiveDirectoryRealm Shiro's classes
 *

From source file org.ow2.proactive.iam.core.realms.PamRealm.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.
 * <p>
 * This is a single Shiro {@code Realm} that interfaces with the OS's {@code PAM} subsystem which itself

From source file org.ow2.proactive.iam.core.realms.ProActiveIamRealm.java

/**
 * @author ActiveEon Team
 * @since 09/02/17
 */
public class ProActiveIamRealm extends AuthorizingRealm {

From source file org.ow2.proactive.workflowcatalog.security.RestSchedulerRealm.java

public class RestSchedulerRealm extends AuthorizingRealm {

    private static Logger logger = Logger.getLogger(RestSchedulerRealm.class.getName());
    public static String[] DEFAULT_ROLES = { "user" };

    private MySecurityManagerService mySecurityManagerService;

From source file org.panifex.security.persistence.PersistenceRealm.java

/**
 * Realm that allows authentication and authorization via persisted data.
 *
 */
public class PersistenceRealm extends AuthorizingRealm implements AuthenticationService, AuthorizationService {

From source file org.pepstock.jem.gwt.server.security.NullAuthenticatorRealm.java

/**
 * Is authorization realm which allows to access to JEM with a specific users (defined in SHIRO configuration
 * file) without password.
 * 
 * @author Andrea "Stock" Stocchero
 * 

From source file org.plukh.fluffymeow.shiro.MyBatisRealm.java

public class MyBatisRealm extends AuthorizingRealm {
    private final FluffyDAO dao;

    @Inject
    public MyBatisRealm(FluffyDAO dao) {
        this.dao = dao;

From source file org.qi4j.library.shiro.domain.passwords.PasswordRealmMixin.java

public class PasswordRealmMixin extends AuthorizingRealm
        implements Realm, Authorizer, PasswordService, ServiceActivation {

    private static final Logger LOG = LoggerFactory.getLogger(Shiro.LOGGER_NAME);

    @Structure