Example usage for org.springframework.security.web AuthenticationEntryPoint interface-usage

List of usage examples for org.springframework.security.web AuthenticationEntryPoint interface-usage

Introduction

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

Usage

From source file de.itsvs.cwtrpc.security.RpcAuthenticationEntryPoint.java

/**
 * @author Volker Schmidt
 * @since 0.9
 */
public class RpcAuthenticationEntryPoint implements AuthenticationEntryPoint, InitializingBean {
    private RedirectStrategy redirectStrategy;

From source file de.steilerdev.myVerein.server.security.rest.RestAuthenticationEntryPoint.java

public class RestAuthenticationEntryPoint implements AuthenticationEntryPoint {
    private static Logger logger = LoggerFactory.getLogger(RestAuthenticationEntryPoint.class);

    @Override
    public void commence(HttpServletRequest request, HttpServletResponse response,
            AuthenticationException authException) throws IOException {

From source file be.bittich.quote.security.UnauthorizedEntryPoint.java

/**
 *
 * @author nateriver
 */
@Component
public class UnauthorizedEntryPoint implements AuthenticationEntryPoint {

From source file de.knightsoftnet.validators.server.security.HttpAuthenticationEntryPoint.java

/**
 * http authentication entry point for gwt applications. based on the work of
 * https://github.com/imrabti/gwtp-spring-security
 *
 * @author Manfred Tremmel
 */

From source file ru.codemine.ccms.api.security.ApiEntryPointHandler.java

/**
 *
 * @author Alexander Savelev
 */

@Component

From source file de.punyco.thirtytwosquare.auth.GoogleAppEngineAuthenticationEntryPoint.java

public class GoogleAppEngineAuthenticationEntryPoint implements AuthenticationEntryPoint {

    private static final Logger LOG = LoggerFactory.getLogger(GoogleAppEngineAuthenticationEntryPoint.class);

    private UserService userService;

From source file org.nimbustools.ctxbroker.rest.FailAuthenticationEntryPoint.java

public class FailAuthenticationEntryPoint implements AuthenticationEntryPoint, InitializingBean {

    private static final Log logger = LogFactory.getLog(FailAuthenticationEntryPoint.class);

    private ResponseUtil responseUtil;

From source file net.navasoft.madcoin.backend.services.security.CustomAuthenticationEntryPoint.java

/**
 * net.navasoft.madcoin.backend.services.security Class class
 * CustomAuthenticationEntryPoint. Description:
 * 
 * @author Juan Diego Navarre Gonzalez - (<a
 *         href="mailto:jdnavarreg@outlook.com">{@literal jdnavarreg@outlook.com}

From source file io.getlime.security.powerauth.rest.api.spring.entrypoint.PowerAuthApiAuthenticationEntryPoint.java

/**
 * Default PowerAuth authentication entry-point implementation.
 *
 * @author Petr Dvorak, petr@lime-company.eu
 *
 */

From source file org.tec.security.spring.Http401AuthenticationEntryPoint.java

/**
 * returns 401 unauth header to be used with pure js ajax client
 */
public class Http401AuthenticationEntryPoint implements AuthenticationEntryPoint {
    /** the logger */
    protected Log mLogger = LogFactory.getLog(this.getClass());