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

security.filters.AuthenticationHandler Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
package security.filters;

public interface AuthenticationHandler {

    /**
     * TOKEN令牌获取方法
     *
     * @return
     */
    String getRequestToken();

    /**
     * 获取请求路径
     *
     * @return
     */
    String getRequestPath();

    /**
     * 获取请求方法
     *
     * @return
     */
    String getRequestMethod();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy