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.sonatype.nexus.crowd.plugin.CrowdAuthenticatingRealm.java

/**
 * The Class CrowdAuthenticatingRealm.
 */
@Singleton
@Named
@Description("Crowd Authentication Realm")

From source file org.sonatype.nexus.examples.url.UrlRealm.java

/**
 * A Realm that performs HTTP GET authenticated with user entered credentials against a remote URL to perform authc.
 */
@Singleton
@Typed(Realm.class)
@Named(UrlRealm.NAME)

From source file org.sonatype.nexus.jsecurity.realms.external.crowd.CrowdAuthenticatingRealm.java

@Component(role = Realm.class, hint = "Crowd")
public class CrowdAuthenticatingRealm extends AuthorizingRealm implements Initializable, Disposable {

    private static boolean active;

    @Requirement

From source file org.sonatype.nexus.kenai.internal.KenaiRealm.java

/**
 * A Realm that connects to a java.net kenai API.
 *
 * @author Brian Demers
 */
@Singleton

From source file org.sonatype.nexus.plugins.crowd.CrowdAuthenticatingRealm.java

@Singleton
@Typed(Realm.class)
@Named(CrowdAuthenticatingRealm.ROLE)
@Description("OSS Crowd Authentication Realm")
public class CrowdAuthenticatingRealm extends AuthorizingRealm implements Initializable, Destroyable {

From source file org.sonatype.nexus.plugins.crowd.security.CrowdAuthenticatingRealm.java

@Singleton
@Named
@Description("OSS Crowd Authentication Realm")
public class CrowdAuthenticatingRealm extends AuthorizingRealm {
    private static final Logger LOG = LoggerFactory.getLogger(CrowdAuthenticatingRealm.class);

From source file org.sonatype.nexus.proxy.security.PlexusConfiguredRealm.java

public class PlexusConfiguredRealm extends AuthorizingRealm {

    private final Map<String, String> userPrivileges;

    public PlexusConfiguredRealm(final Map<String, String> privileges) {
        this.userPrivileges = Maps.newHashMap();

From source file org.sonatype.nexus.security.internal.AuthorizingRealmImpl.java

/**
 * Default {@link AuthorizingRealm}.
 *
 * This realm ONLY handles authorization.
 */
@Singleton

From source file org.sonatype.nexus.security.realm.MockRealm.java

/**
 * @see ExternalRoleMappedTest
 */
public class MockRealm extends AuthorizingRealm {
    public static final String NAME = "Mock";

From source file org.sonatype.nexus.security.realm.MockRealmB.java

@Singleton
@Named("MockRealmB")
public class MockRealmB extends AuthorizingRealm {
    public MockRealmB() {
        this.setAuthenticationTokenClass(UsernamePasswordToken.class);
    }