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

com.github.angdx.gs.store.RBACValidationStore Maven / Gradle / Ivy

package com.github.angdx.gs.store;

import org.springframework.http.HttpMethod;
import org.springframework.security.access.ConfigAttribute;

import java.util.List;

/**
 * 权限仓库
 */
public interface RBACValidationStore {

    /**
     * 通过请求url和方法获取拥有的{@link ConfigAttribute}
     * @param url url
     * @param httpMethod httpMethod
     * @return {@link ConfigAttribute} 集合
     */
    List getConfigAttribute(String url, HttpMethod httpMethod);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy