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

com.github.wzc789376152.shiro.service.IShiroService Maven / Gradle / Ivy

The newest version!
package com.github.wzc789376152.shiro.service;

import com.github.wzc789376152.vo.UserInfo;

import java.util.List;

public interface IShiroService {
    UserInfo findUserInfoByUsername(String username, String host);

    String findPasswordByUsername(String username,String host);

    String findSaltByUsername(String username,String host);

    List findRolesByObject(UserInfo object);

    List findPermissionsByObject(UserInfo object);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy