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

de.cidaas.interceptor.authentication.JwtAuthentication Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package de.cidaas.interceptor.authentication;

import de.cidaas.jwt.JWTVerifier;
import de.cidaas.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