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

com.auth0.spring.security.api.authentication.JwtAuthentication Maven / Gradle / Ivy

There is a newer version: 1.5.3
Show newest version
package com.auth0.spring.security.api.authentication;

import com.auth0.jwt.JWTVerifier;
import com.auth0.jwt.exceptions.JWTVerificationException;
import org.springframework.security.core.Authentication;

public interface JwtAuthentication {

    String getToken();

    String getKeyId();

    Authentication verify(JWTVerifier verifier) throws JWTVerificationException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy