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

tgtools.web.develop.service.UserService Maven / Gradle / Ivy

package tgtools.web.develop.service;

import tgtools.exceptions.APPErrorException;

/**
 * @author 田径
 * @Title
 * @Description
 * @date 10:07
 */
public interface UserService {

    boolean validLoginUser(String pUsername, String pPassword) throws APPErrorException;

    String createToken(String pUsername, String pAddr) throws APPErrorException;

    void tokenLogin(String pAddr, String pUsername, String pToken) throws APPErrorException;


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy