You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
802 B
31 lines
802 B
package com.mh.user.constants; |
|
|
|
/** |
|
* All the topics that need to be used in the project. |
|
* |
|
* @author ljf |
|
* @version 0.1 |
|
* @date 2025-01-22 |
|
*/ |
|
public class TopicConst { |
|
|
|
public static final String MH_UPLOAD = "mh_upload/"; |
|
|
|
public static final String EVENTS_UPLOAD = "events_upload/"; |
|
|
|
public static final String MH_COLLECTION = "mh_collection/"; |
|
|
|
public static final String EVENTS_COLLECTION = "events_collection/"; |
|
|
|
public static final String MH_CONTROL = "mh_control/"; |
|
|
|
public static final String EVENTS_CONTROL = "events_control/"; |
|
|
|
public static final String REGEX_SN = "[A-Za-z0-9]+"; |
|
|
|
public static final String THING_MODEL_PRE = "thing/"; |
|
|
|
public static final String PRODUCT = "product/"; |
|
|
|
public static final String SERVICES_SUF = "/services"; |
|
}
|
|
|