cn.wizzer.iot.mqtt.server.common.auth.IAuthService Maven / Gradle / Ivy
/**
* Copyright (c) 2018, Mr.Wang ([email protected]) All rights reserved.
*/
package cn.wizzer.iot.mqtt.server.common.auth;
/**
* 用户和密码认证服务接口
*/
public interface IAuthService {
/**
* 验证用户名和密码是否正确
*/
boolean checkValid(String username, String password);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy