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

work.wangjw.config.AuthConfig Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package work.wangjw.config;

import java.util.Collections;
import java.util.List;
import java.util.Map;

/**
 * @author Gavin
 * @since 2021/7/23 14:23
 */
public interface AuthConfig {
    default List getPermissionList() {
        return Collections.emptyList();
    }

    default Map pathPermission() {
        return Collections.emptyMap();
    }

    default List excludePath() {
        return Collections.emptyList();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy