List of usage examples for org.springframework.security.authentication AuthenticationProvider interface-usage
From source file com.web.mavenproject6.config.CustomAuthenticationProvider.java
@Component public class CustomAuthenticationProvider implements AuthenticationProvider { @Autowired UserServiceImp userServiceImp;
From source file com.devicehive.auth.rest.providers.HiveAnonymousAuthenticationProvider.java
public class HiveAnonymousAuthenticationProvider implements AuthenticationProvider { @Override public Authentication authenticate(Authentication authentication) throws AuthenticationException { return new HiveAuthentication(new HivePrincipal(), authentication.getAuthorities()); }
From source file security.MyAuthenticationProvider.java
/**
* @author Maxim
*
* Voor meer controle over het spring authentication
* http://stackoverflow.com/questions/14733418/login-logout-in-rest-with-spring-3/14735345#14735345
*/
From source file br.com.sicva.seguranca.ProvedorAutenticacao.java
/** * * @author Rodrigo */ @Component public class ProvedorAutenticacao implements AuthenticationProvider {
From source file ar.com.zauber.commons.social.openid.security.OpenIDAuthenticationProvider.java
/**
* {@link AuthenticationProvider} para OAuth de Twitter
*
* @author Francisco J. Gonzlez Costanz
* @since Feb 10, 2010
*/
From source file od.lti.LTIAuthenticationProvider.java
/** * @author ggilbert * */ @Component public class LTIAuthenticationProvider implements AuthenticationProvider {
From source file com.mycompany.apps.oauth2.authentication.security.CustomUserAuthenticationProvider.java
/**
* ?????<br>
* ????????????????
*
* @author stnetadmin
*/
From source file com.sitewhere.security.SitewhereAuthenticationProvider.java
/** * Spring authentication provider backed by Atlas. * * @author Derek */ public class SitewhereAuthenticationProvider implements AuthenticationProvider {
From source file fr.univlorraine.mondossierweb.utils.EmptyJMeterAuthenticationProvider.java
public class EmptyJMeterAuthenticationProvider implements AuthenticationProvider { @Override public Authentication authenticate(Authentication authentication) throws AuthenticationException { // String name = authentication.getName(); // String password = authentication.getCredentials().toString();
From source file org.libreplan.web.users.services.AuthenticationProviderLoggingDecorator.java
public class AuthenticationProviderLoggingDecorator implements AuthenticationProvider { private static final Log LOG = LogFactory.getLog(AuthenticationProviderLoggingDecorator.class); private AuthenticationProvider decoratedProvider;