package com.hdl.sdk.common.config;
|
|
/**
|
* Created by Tong on 2021/9/22.
|
*/
|
public class TopicConstant {
|
|
//搜索网关
|
public static final String GATEWAY_SEARCH = "/user/all/custom/gateway/search";
|
|
//搜索网关响应
|
public static final String GATEWAY_SEARCH_REPLY = "/user/all/custom/gateway/search_reply";
|
|
//网关详细信息获取s=gw_id
|
public static final String GATEWAY_INFO = "/user/%s/custom/gateway/get";
|
|
//获取物理设备列表
|
public static final String GET_DEVICE_LIST = " /user/%s/custom/device/list/get";
|
|
//获取物理设备列表响应
|
public static final String GET_DEVICE_LIST_REPLY = " /user/%s/custom/device/list/get_reply";
|
|
//获取功能列表
|
public static final String GET_FUNCTION_LIST = "/user/%s/custom/function/list/get";
|
|
//获取功能响应
|
public static final String GET_FUNCTION_LIST_REPLY = "/user/%s/custom/function/list/get_reply";
|
|
//功能属性读取
|
public static final String GET_FUNCTION_ATTRIBUTE = "/user/%s/custom/function/attribute/get";
|
|
//功能属性响应
|
public static final String GET_FUNCTION_ATTRIBUTE_REPLY = "/user/%s/custom/function/attribute/get_reply";
|
|
//控制
|
public static final String PROPERTY_DOWN = "/base/%s/thing/property/down";
|
|
//控制响应
|
public static final String PROPERTY_DOWN_REPLY = "/base/%s/thing/property/down_reply";
|
|
//状态上报
|
public static final String PROPERTY_UP = "/base/%s/thing/property/up";
|
|
//状态上报响应
|
public static final String PROPERTY_UP_REPLY = "/base/%s/thing/property/up_reply";
|
|
//读取状态
|
public static final String PROPERTY_READ = "/base/%s/thing/property/read";
|
|
//读取状态响应
|
public static final String PROPERTY_READ_REPLY = "/base/%s/thing/property/read_reply";
|
}
|