List of usage examples for org.springframework.security.authentication AuthenticationProvider interface-usage
From source file org.apache.nifi.minifi.c2.security.authentication.X509AuthenticationProvider.java
public class X509AuthenticationProvider implements AuthenticationProvider { private static final Logger logger = LoggerFactory.getLogger(X509AuthenticationProvider.class); private final AuthorityGranter authorityGranter; public X509AuthenticationProvider(AuthorityGranter authorityGranter) { this.authorityGranter = authorityGranter;
From source file com.hp.autonomy.frontend.configuration.authentication.IdolPreAuthenticatedAuthenticationProvider.java
@Slf4j public class IdolPreAuthenticatedAuthenticationProvider implements AuthenticationProvider { private final UserService userService; private final GrantedAuthoritiesMapper authoritiesMapper; private final Set<String> preAuthenticatedRoles;
From source file hr.foi.sis.conf.PBKDF2AuthProvider.java
/** * * @author paz */ @Component public class PBKDF2AuthProvider implements AuthenticationProvider {
From source file se.omegapoint.facepalm.client.security.DbAuthenticationProvider.java
public class DbAuthenticationProvider implements AuthenticationProvider { private final UserRepository userRepository; public DbAuthenticationProvider(final UserRepository userRepository) { this.userRepository = notNull(userRepository);
From source file st.malike.auth.server.service.security.UserAuthProviderService.java
/** * * @author malike_st */ @Component @ComponentScan(basePackages = { "org.springframework.security.crypto.password" })
From source file org.springframework.security.extensions.kerberos.KerberosAuthenticationProvider.java
/** * @author Mike Wiesner * @since 1.0 * @version $Id$ */ public class KerberosAuthenticationProvider implements AuthenticationProvider {
From source file org.encuestame.core.security.web.EnMeUserAccountProvider.java
/**
* {@link UserAccount} Authentication Provider.
* <p>
* This provider could be used to re-login and in signup process.
* </p>
* @author Picado, Juan juanATencuestame.org
From source file com.springsource.greenhouse.account.UsernamePasswordAuthenticationProvider.java
/**
* Adapts {@link AccountRepository#authenticate(String, String)} to the SpringSecurity AuthenticationProvider SPI.
* Allows the AccountRepository to drive authentication in a Spring Security environment.
* The authenticated Account is treated as the {@link Authentication#getPrincipal() Authentication Principal}.
* @author Keith Donald
*/
From source file jp.pigumer.security.ExampleAuthenticationProvider.java
public class ExampleAuthenticationProvider implements AuthenticationProvider, InitializingBean { private static final Logger LOG = LoggerFactory.getLogger(ExampleAuthenticationProvider.class); private ExampleUserDetailsService userDetailsService;
From source file br.com.insula.spring.security.janrain.JanrainAuthenticationProvider.java
public class JanrainAuthenticationProvider implements AuthenticationProvider { private AuthenticationUserDetailsService<JanrainAuthenticationToken> authenticationUserDetailsService; @Override public Authentication authenticate(Authentication authentication) {