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

cn.bootx.platform.starter.auth.service.RouterCheck Maven / Gradle / Ivy

There is a newer version: 1.3.6.2
Show newest version
package cn.bootx.platform.starter.auth.service;

/**
 * 路由拦截检查
 *
 * @author xxm
 * @since 2021/12/21
 */
public interface RouterCheck {

    /**
     * 排序
     */
    default int sortNo() {
        return 0;
    }

    /**
     * 路由
     */
    boolean check(Object handler);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy