All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nz.co.katatech.springboot.security.stateless.HttpServletBinder Maven / Gradle / Ivy

Go to download

Stateless security using JWT token. Includes stateless CSRF protection, integration OAuth2SSO

There is a newer version: 1.2
Show newest version
package nz.co.katatech.springboot.security.stateless;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public interface HttpServletBinder {
    String X_AUTH_TOKEN = "X-AUTH-TOKEN";

    T retrieve( HttpServletRequest request );

    void bind( HttpServletResponse response, T value );
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy