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

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

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

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

    /**
     * 根据token查询授权信息
     * @param token 认证token
     * @return 授权用户
     */
    public OAuth2 selectByToken(String token);


    /**
     * 根据用户编号查询
     * @param userId 用户编号
     * @return 授权用户
     */
    public OAuth2 selectByUserId(ID userId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy