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 com.mycompany.springrest.token.JwtAuthenticationProvider.java

/**
 *
 * @author ??
 */
public class JwtAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

From source file com.blstream.patronage.ctf.security.RestAuthenticationProvider.java

/**
 * Copyright 2013 BLStream
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at

From source file net.kamhon.ieagle.security.providers.DbAuthenticationProvider.java

/**
 * 
 * @author kamhon
 * 
 */
public class DbAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

From source file technology.tikal.accounts.security.CustomAuthenticationProvider.java

/**
 * 
 * @author Nekorp
 *
 */
public class CustomAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

From source file shiver.me.timbers.spring.security.StormpathAuthenticationProvider.java

/**
 * @author Karl Bennett
 */
public class StormpathAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

    private final Application application;

From source file demo.security.MongoDBAuthenticationProvider.java

@Service
public class MongoDBAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

    @Autowired
    private MongoCollection users;

From source file org.ingini.spring.boot.mongodb.security.MongoDBAuthenticationProvider.java

@Service
public class MongoDBAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

    @Autowired
    private MongoCollection users;

From source file org.brekka.pegasus.core.security.UnlockAuthenticationProvider.java

/**
 * Provider for unlocking anonymous transfers
 *
 * @author Andrew Taylor (andrew@brekka.org)
 */
public class UnlockAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

From source file com.mothsoft.alexis.service.security.AlexisApiAuthenticationProvider.java

public class AlexisApiAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

    private UserDetailsService userDetailsService;
    private UserDao userDao;
    private PlatformTransactionManager transactionManager;
    private TransactionTemplate transactionTemplate;

From source file org.sakaiproject.rubrics.security.JwtAuthenticationProvider.java

/**
 * Used for checking the token from the request and supply the UserDetails if the token is valid
 */
@Component
public class JwtAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {