com.authkit.servlet.TokenExtractor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authkit-servlet Show documentation
Show all versions of authkit-servlet Show documentation
OpenID and JWT client for Java Servlet Applications
package com.authkit.servlet;
import javax.servlet.FilterConfig;
import javax.servlet.http.HttpServletRequest;
import java.util.function.Function;
public interface TokenExtractor extends Function {
void init(Config config);
}