io.scalecube.security.tokens.jwt.JwtTokenResolver Maven / Gradle / Ivy
The newest version!
package io.scalecube.security.tokens.jwt;
import java.util.concurrent.CompletableFuture;
public interface JwtTokenResolver {
/**
* Verifies and returns token claims.
*
* @param token jwt token
* @return mono result with parsed claims (or error)
*/
CompletableFuture resolve(String token);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy