Example usage for org.springframework.security.web.authentication UsernamePasswordAuthenticationFilter subclass-usage

List of usage examples for org.springframework.security.web.authentication UsernamePasswordAuthenticationFilter subclass-usage

Introduction

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

Usage

From source file com.beto.test.securityinterceptor.security.UserNamePasswordAuth.java

/**
 *
 * @author Belgelerim
 */
public class UserNamePasswordAuth extends UsernamePasswordAuthenticationFilter {

From source file fr.hoteia.qalingo.web.handler.security.ExtUsernamePasswordAuthenticationFilter.java

public class ExtUsernamePasswordAuthenticationFilter extends UsernamePasswordAuthenticationFilter {

    @Override
    protected boolean requiresAuthentication(HttpServletRequest request, HttpServletResponse response) {
        String uri = request.getRequestURI();
        int pathParamIndex = uri.indexOf(';');

From source file org.hoteia.qalingo.core.web.handler.security.ExtUsernamePasswordAuthenticationFilter.java

public class ExtUsernamePasswordAuthenticationFilter extends UsernamePasswordAuthenticationFilter {

    @Override
    protected boolean requiresAuthentication(HttpServletRequest request, HttpServletResponse response) {
        String uri = request.getRequestURI();
        int pathParamIndex = uri.indexOf(';');

From source file org.example.security.RestUsernamePasswordAuthenticationFilter.java

/**
 * Authentication filter for REST services
 */
public class RestUsernamePasswordAuthenticationFilter extends UsernamePasswordAuthenticationFilter {

    @Override

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

/**
 * @author Karl Bennett
 */
public class WrappedUsernamePasswordAuthenticationFilter extends UsernamePasswordAuthenticationFilter {

    private final JwtAuthenticationSuccessHandler jwtSuccessHandler;

From source file com.isalnikov.config.auth.UserAuthorizationFilter.java

/**
 *
 * @author Igor Salnikov
 */
public class UserAuthorizationFilter extends UsernamePasswordAuthenticationFilter {

From source file com.healthcit.cacure.security.AuthenticationProcessingFilter.java

/**
 * Filter for authentification.
 * @author vetali
 *
 */
public class AuthenticationProcessingFilter extends UsernamePasswordAuthenticationFilter {

From source file org.codehaus.groovy.grails.plugins.springsecurity.RequestHolderAuthenticationFilter.java

/**
 * Extends the default {@link UsernamePasswordAuthenticationFilter} to store the request
 * and response in the {@link SecurityRequestHolder}.
 *
 * @author <a href='mailto:burt@burtbeckwith.com'>Burt Beckwith</a>
 */

From source file com.sshdemo.common.security.web.authentication.UsernamePasswordCheckcodeAuthenticationFilter.java

/**
 * ?
 * 
 * ????????
 * ??????{@link #FORM_CODECHECK_KEY}?getCheckcodeParameter
 * 

From source file com.seajas.search.utilities.spring.security.UsernamePasswordLanguageAuthenticationFilter.java

/**
 * An extended authentication filter which also set the current locale.
 * 
 * @author Jasper van Veghel <jasper@seajas.com>
 */
public class UsernamePasswordLanguageAuthenticationFilter extends UsernamePasswordAuthenticationFilter {