security.filters.AuthenticationHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security Show documentation
Show all versions of security Show documentation
jishi series products security module on java
package security.filters;
public interface AuthenticationHandler {
/**
* TOKEN令牌获取方法
*
* @return
*/
String getRequestToken();
/**
* 获取请求路径
*
* @return
*/
String getRequestPath();
/**
* 获取请求方法
*
* @return
*/
String getRequestMethod();
}