package com.yihu.base.security.rbas.provider; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer; /** * Created by chenweida on 2017/12/5. */ public interface AuthorizeConfigProvider { void config(ExpressionUrlAuthorizationConfigurer.ExpressionInterceptUrlRegistry expressionInterceptUrlRegistry); }