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

cn.zhxu.bp.auth.AuthConst Maven / Gradle / Ivy

The newest version!
package cn.zhxu.bp.auth;

/**
 * @author Troy.Zhou @ 2022/8/2 16:57
 */
public interface AuthConst {

    /**
     * 允许所有请求
     */
    String PERMIT_ALL = "permitAll";

    /**
     * 允许登录用户
     */
    String PERMIT_USER = "permitUser";

    /**
     * 允许指定类型的用户
     */
    String PERMIT_TYPE = "permit[type=%s]";

    /**
     * 允许拥有指定角色编码的用户
     */
    String PERMIT_ROLE = "permit[role=%s]";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy