nz.co.katatech.springboot.security.stateless.HttpServletBinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-stateless-security Show documentation
Show all versions of spring-stateless-security Show documentation
Stateless security using JWT token. Includes stateless CSRF protection, integration OAuth2SSO
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