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

com.zhuang.mica.mqtt.service.DeviceService Maven / Gradle / Ivy

The newest version!
package com.zhuang.mica.mqtt.service;

public interface DeviceService {

    boolean login(String deviceId, String username, String password);

    void updateOnline(String deviceId, boolean online);

    void addFunctionLog(String deviceId, String functionMessage, boolean isReply);

    default String getProductId(String deviceId) {
        return deviceId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy