List of usage examples for org.apache.shiro.realm AuthenticatingRealm subclass-usage
From source file ca.uhnresearch.pughlab.tracker.security.LdapRealm.java
public class LdapRealm extends AuthenticatingRealm { private static final Logger log = LoggerFactory.getLogger(LdapRealm.class); /** * A collection of contexts. Order is not implied here, and we might well
From source file co.edu.uniandes.csw.miso4204.security.SecurityRealm.java
/** * * @author estudiante */ public class SecurityRealm extends AuthenticatingRealm {
From source file com.comp.pruebaconshiro.CustomRealm.java
/** * * @author cristian.palacio */ public class CustomRealm extends AuthenticatingRealm {
From source file com.josue.shiro.cdi.custom.CDIAwareJPARealm.java
/** * * @author Josue */ public class CDIAwareJPARealm extends AuthenticatingRealm {
From source file com.josue.shiro.token.based.custom.APIKeyAuthorizingRealm.java
/** * * @author Josue */ public class APIKeyAuthorizingRealm extends AuthenticatingRealm {
From source file com.kalix.framework.webapp.shiro.DemoRealm.java
/**
* Simple realm implementation, delegating to a UserDao.
* The {@code ShiroIni} annotation ensures we can reference
* this CDI bean in shiro.ini
*
* @author Harald Wellmann
From source file com.quyiyuan.realms.SecondRealm.java
/** * Created by Fsx on 2016/12/5. */ @Slf4j public class SecondRealm extends AuthenticatingRealm {
From source file com.sonatype.nexus.repository.nuget.internal.security.NugetApiKeyRealm.java
/**
* {@link AuthenticatingRealm} that maps NuGet API-Keys to valid {@link Subject}s.
*
* @since 3.0
*/
@Named(NugetApiKey.NAME)
From source file ddf.security.realm.sts.AbstractStsRealm.java
public abstract class AbstractStsRealm extends AuthenticatingRealm implements STSClientConfiguration { private static final XLogger LOGGER = new XLogger(LoggerFactory.getLogger(AbstractStsRealm.class)); private static final String NAME = AbstractStsRealm.class.getSimpleName(); private static final String ADDRESSING_NAMESPACE = "http://www.w3.org/2005/08/addressing";
From source file ddf.security.realm.sts.StsRealm.java
public class StsRealm extends AuthenticatingRealm implements STSClientConfiguration { private static final Logger LOGGER = (LoggerFactory.getLogger(StsRealm.class)); private static final String ADDRESSING_NAMESPACE = "http://www.w3.org/2005/08/addressing"; private static final Splitter SPLITTER = Splitter.on(',').trimResults().omitEmptyStrings();