List of usage examples for org.apache.shiro.realm.ldap JndiLdapRealm subclass-usage
From source file org.apache.hadoop.gateway.shirorealm.KnoxLdapRealm.java
/**
* Implementation of {@link org.apache.shiro.realm.ldap.JndiLdapRealm} that also
* returns each user's groups.
* This implementation is heavily based on org.apache.isis.security.shiro.IsisLdapRealm.
*
* This implementation saves looked up ldap groups in Shiro Session to make them
From source file org.apache.isis.security.shiro.IsisLdapRealm.java
/**
* Implementation of {@link org.apache.shiro.realm.ldap.JndiLdapRealm} that also
* returns each user's groups.
*
* <p>
* Sample config for <tt>shiro.ini</tt>:
From source file org.apache.zeppelin.realm.LdapGroupRealm.java
/** * Created for org.apache.zeppelin.server. */ public class LdapGroupRealm extends JndiLdapRealm { private static final Logger LOG = LoggerFactory.getLogger(LdapGroupRealm.class);
From source file org.apache.zeppelin.realm.LdapRealm.java
/**
* Implementation of {@link org.apache.shiro.realm.ldap.JndiLdapRealm} that also returns each user's
* groups. This implementation is heavily based on org.apache.isis.security.shiro.IsisLdapRealm.
*
* <p>This implementation saves looked up ldap groups in Shiro Session to make them
* easy to be looked up outside of this object
From source file org.apache.zeppelin.server.LdapGroupRealm.java
/** * Created for org.apache.zeppelin.server on 09/06/16. */ public class LdapGroupRealm extends JndiLdapRealm { private static final Logger LOG = LoggerFactory.getLogger(LdapGroupRealm.class);
From source file org.estatio.webapp.shiro.EstatioLdapRealm.java
/**
* Implementation of {@link org.apache.shiro.realm.ldap.JndiLdapRealm} that also
* returns each user's groups.
*
* <p>
* Sample config for <tt>shiro.ini</tt>:
From source file org.killbill.billing.util.security.shiro.realm.KillBillJndiLdapRealm.java
public class KillBillJndiLdapRealm extends JndiLdapRealm { private static final Logger log = LoggerFactory.getLogger(KillBillJndiLdapRealm.class); private static final String USERDN_SUBSTITUTION_TOKEN = "{0}";
From source file org.obiba.shiro.realm.LdapRealm.java
/**
* LDAP {@link JndiLdapRealm} implementation that supports authorization.
* <p/>
* Here is a sample config for shiro.ini for a basic OpenLDAP config:
* <pre>
* # LDAP realm configuration
From source file org.ohdsi.webapi.shiro.LdapRealm.java
public class LdapRealm extends JndiLdapRealm { @Override public boolean supports(AuthenticationToken token) { return token instanceof LdapUsernamePasswordToken;
From source file org.opendaylight.aaa.shiro.realm.ODLJndiLdapRealm.java
/**
* An extended implementation of
* <code>org.apache.shiro.realm.ldap.JndiLdapRealm</code> which includes
* additional Authorization capabilities. To enable this Realm, add the
* following to <code>shiro.ini</code>:
*