Example usage for org.springframework.security.authentication.dao AbstractUserDetailsAuthenticationProvider subclass-usage

List of usage examples for org.springframework.security.authentication.dao AbstractUserDetailsAuthenticationProvider subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.authentication.dao AbstractUserDetailsAuthenticationProvider subclass-usage.

Usage

From source file de.kaiserpfalzEdv.office.ui.web.security.KPOfficeAuthenticationProvider.java

/**
 * @author klenkes <rlichti@kaiserpfalz-edv.de>
 * @version 0.1.0
 * @since 0.1.0
 */
@Named

From source file es.sas.lopd.infraestructura.seguridad.impl.DaoAuthenticationProvider.java

/**
 * An {@link AuthenticationProvider} implementation that retrieves user details from a {@link UserDetailsService}.
 *
 * @author Ben Alex
 */
public class DaoAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

From source file io.gravitee.management.idp.memory.authentication.InMemoryAuthentificationProvider.java

/**
 * @author David BRASSELY (david at gravitee.io)
 * @author GraviteeSource Team
 */
@Import(InMemoryAuthenticationProviderConfiguration.class)
public class InMemoryAuthentificationProvider extends AbstractUserDetailsAuthenticationProvider

From source file whitelabel.cloud.webapp.security.spring.CloudUserDetailsAuthenticationProvider.java

public class CloudUserDetailsAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

    @Autowired
    @Qualifier("wsEndUserEndpoint")
    private String wsEndUserEndpoint;

From source file org.verinice.rest.security.VeriniceAuthenticationProvider.java

/**
 * An {@link AuthenticationProvider} implementation that retrieves user details
 * from a {@link UserDetailsService}.
 *
 * See: http://ryanjbaxter.com/2015/01/06/securing-rest-apis-with-spring-boot/
 * 

From source file miage.ecom.web.security.AdminAuthenticationProvider.java

/**
 *
 * @author Schwartz Michal <m.schwartz@epokmedia.fr>
 */
public class AdminAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

From source file org.encuestame.core.security.web.EnMeUsernameProvider.java

/**
 * An {@link AuthenticationProvider} implementation that retrieves user details
 * from an {@link EnMeUserServiceImp} or Social Accounts.
 * This implementation require {@link PasswordEncoder} from jasypt lib.
 * @author Picado, Juan juanATencuestame.org
 * @since Apr 30, 2011

From source file miage.ecom.web.security.UserAuthenticationProvider.java

/**
 *
 * @author Schwartz Michal <m.schwartz@epokmedia.fr>
 */
public class UserAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

From source file ph.fingra.statisticsweb.security.FingraphAnthenticationProvider.java

@SuppressWarnings("deprecation")
public class FingraphAnthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

    private Logger logger = LoggerFactory.getLogger(getClass());

    private static final String USER_NOT_FOUND_PASSWORD = "userNotFoundPassword";

From source file org.jutge.joc.porra.security.MongoDBAuthenticationProvider.java

/**
 * Adapted from the springsecurity + mongodb example
 * 
 * Extend AbstractUserDetailsAuthenticationProvider when you want to prehandle authentication, as in throwing custom exception messages, checking status, etc.
 * @author Llop
 */