List of usage examples for org.apache.shiro.realm.ldap AbstractLdapRealm subclass-usage
From source file org.apache.zeppelin.realm.ActiveDirectoryGroupRealm.java
/**
* A {@link org.apache.shiro.realm.Realm} that authenticates with an active directory LDAP
* server to determine the roles for a particular user. This implementation
* queries for the user's groups and then maps the group names to roles using the
* {@link #groupRolesMap}.
*
From source file org.apache.zeppelin.server.ActiveDirectoryGroupRealm.java
/**
* A {@link Realm} that authenticates with an active directory LDAP
* server to determine the roles for a particular user. This implementation
* queries for the user's groups and then maps the group names to roles using the
* {@link #groupRolesMap}.
*
From source file org.owasp.dependencytrack.auth.ActiveDirectoryAuthenticationRealm.java
/**
* A {@link org.apache.shiro.realm.Realm} that authenticates with an active directory LDAP
* server. This implementation only authenticates via Active Directory. No authorization
* checks (roles and permissions) are made by this class. This class is intended to be used
* in conjunction with {@link org.apache.shiro.realm.jdbc.JdbcRealm} to provide authentication
* via LDAP and control over roles and permissions locally.
From source file org.sonatype.nexus.ldap.LdapRealm.java
@Named(LdapConstants.REALM_NAME) @Singleton @Description("LDAP Realm") public class LdapRealm extends AbstractLdapRealm { private final Logger logger = Loggers.getLogger(getClass());
From source file org.sonatype.security.ldap.realms.AbstractLdapAuthenticatingRealm.java
public abstract class AbstractLdapAuthenticatingRealm extends AbstractLdapRealm { private final Logger logger = LoggerFactory.getLogger(getClass()); @Requirement private LdapManager ldapManager;
From source file org.sonatype.security.ldap.realms.AbstractLdapAuthenticationRealm.java
public abstract class AbstractLdapAuthenticationRealm extends AbstractLdapRealm { private final Logger logger = Loggers.getLogger(getClass()); private final LdapManager ldapManager; public AbstractLdapAuthenticationRealm(final LdapManager ldapManager) {
From source file org.sonatype.security.realms.ldap.realms.LdapRealm.java
@Named(LdapPlugin.REALM_NAME) @Singleton @Description("LDAP Realm") public class LdapRealm extends AbstractLdapRealm { private final Logger logger = Loggers.getLogger(getClass());