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

com.github.dennisit.vplus.data.security.AuthorityIFace Maven / Gradle / Ivy

package com.github.dennisit.vplus.data.security;

import java.util.Set;

/**
 * Created by hh on 2017/11/18.
 */
public interface AuthorityIFace {

    /**
     * 根据用户账号查询
     * @param username 用户账号
     * @return 用户信息
     */
    public Authority selectByUserName(String username);

    /**
     * 查询用户角色
     * @param userId 用户编号
     * @return 角色集合
     */
    public Set selectRoles(ID userId);

    /**
     * 查询用户权限
     * @param userId 用户编号
     * @return 权限集合
     */
    public Set selectPermissions(ID userId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy