Example usage for org.springframework.security.authentication AuthenticationProvider interface-usage

List of usage examples for org.springframework.security.authentication AuthenticationProvider interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.authentication AuthenticationProvider interface-usage.

Usage

From source file software.coolstuff.springframework.owncloud.service.impl.local.OwncloudLocalAuthenticationProviderImpl.java

@RequiredArgsConstructor
@Slf4j
public class OwncloudLocalAuthenticationProviderImpl implements AuthenticationProvider {

    private MessageSourceAccessor messages = SpringSecurityMessageSource.getAccessor();

From source file br.com.joaops.smt.security.SmtAuthenticationProvider.java

/**
 *
 * @author Joo
 */
@Component
public class SmtAuthenticationProvider implements AuthenticationProvider {

From source file org.apache.syncope.core.spring.security.UsernamePasswordAuthenticationProvider.java

@Configurable
public class UsernamePasswordAuthenticationProvider implements AuthenticationProvider {

    protected static final Logger LOG = LoggerFactory.getLogger(UsernamePasswordAuthenticationProvider.class);

    protected static final Encryptor ENCRYPTOR = Encryptor.getInstance();

From source file com.t2tierp.controller.LoginController.java

@EJB(name = "usuarioDAO", beanInterface = UsuarioDAO.class)
public class LoginController implements AuthenticationProvider {

    private UsuarioDAO dao;

    @Override

From source file at.plechinger.spring.security.scribe.ScribeAuthenticationProvider.java

/**
 *
 * @author Lukas Plechinger, www.plechinger.at
 */
public class ScribeAuthenticationProvider implements AuthenticationProvider {

From source file org.keycloak.adapters.springsecurity.authentication.DirectAccessGrantAuthenticationProvider.java

/**
 * {@link AuthenticationProvider} implementing the OAuth2 resource owner password credentials
 * grant for clients secured by Keycloak.
 *
 * <p>
 * The resource owner password credentials grant type is suitable in

From source file org.cloudifysource.security.CloudifyDaoAuthenticationProvider.java

/**
 * An {@link AuthenticationProvider} implementation that retrieves user details
 * from a {@link CloudifyUserDetailsService} to supports authorization groups on
 * top of authorities (roles).
 * 
 * @author noak

From source file org.springframework.security.ldap.authentication.AbstractLdapAuthenticationProvider.java

/**
 * Base class for the standard {@code LdapAuthenticationProvider} and the
 * {@code ActiveDirectoryLdapAuthenticationProvider}.
 *
 * @author Luke Taylor
 * @since 3.1

From source file org.xaloon.wicket.security.spring.external.ExternalAuthenticationProvider.java

/**
 * @author vytautas r.
 */
@Named("externalAuthenticationProvider")
public class ExternalAuthenticationProvider implements AuthenticationProvider, Serializable {
    private static final long serialVersionUID = 1L;

From source file org.apache.syncope.core.spring.security.SyncopeAuthenticationProvider.java

@Configurable
public class SyncopeAuthenticationProvider implements AuthenticationProvider {

    protected static final Logger LOG = LoggerFactory.getLogger(SyncopeAuthenticationProvider.class);

    @Autowired