renamed custom msg type to NA
This commit is contained in:
parent
cebe1040d4
commit
ea5a855272
@ -78,7 +78,7 @@ public enum TbMsgType {
|
|||||||
MSG_COUNT_SELF_MSG(null, true),
|
MSG_COUNT_SELF_MSG(null, true),
|
||||||
|
|
||||||
// Custom or N/A type:
|
// Custom or N/A type:
|
||||||
CUSTOM_OR_NA_TYPE(null, false);
|
NA(null, false);
|
||||||
|
|
||||||
public static final List<String> NODE_CONNECTIONS = EnumSet.allOf(TbMsgType.class).stream()
|
public static final List<String> NODE_CONNECTIONS = EnumSet.allOf(TbMsgType.class).stream()
|
||||||
.filter(tbMsgType -> !tbMsgType.isTellSelfOnly())
|
.filter(tbMsgType -> !tbMsgType.isTellSelfOnly())
|
||||||
|
|||||||
@ -22,7 +22,7 @@ import java.util.List;
|
|||||||
import static org.assertj.core.api.Assertions.assertThat;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
import static org.thingsboard.server.common.data.msg.TbMsgType.ALARM;
|
import static org.thingsboard.server.common.data.msg.TbMsgType.ALARM;
|
||||||
import static org.thingsboard.server.common.data.msg.TbMsgType.ALARM_DELETE;
|
import static org.thingsboard.server.common.data.msg.TbMsgType.ALARM_DELETE;
|
||||||
import static org.thingsboard.server.common.data.msg.TbMsgType.CUSTOM_OR_NA_TYPE;
|
import static org.thingsboard.server.common.data.msg.TbMsgType.NA;
|
||||||
import static org.thingsboard.server.common.data.msg.TbMsgType.DEDUPLICATION_TIMEOUT_SELF_MSG;
|
import static org.thingsboard.server.common.data.msg.TbMsgType.DEDUPLICATION_TIMEOUT_SELF_MSG;
|
||||||
import static org.thingsboard.server.common.data.msg.TbMsgType.DELAY_TIMEOUT_SELF_MSG;
|
import static org.thingsboard.server.common.data.msg.TbMsgType.DELAY_TIMEOUT_SELF_MSG;
|
||||||
import static org.thingsboard.server.common.data.msg.TbMsgType.ENTITY_ASSIGNED_TO_EDGE;
|
import static org.thingsboard.server.common.data.msg.TbMsgType.ENTITY_ASSIGNED_TO_EDGE;
|
||||||
@ -53,7 +53,7 @@ class TbMsgTypeTest {
|
|||||||
DEDUPLICATION_TIMEOUT_SELF_MSG,
|
DEDUPLICATION_TIMEOUT_SELF_MSG,
|
||||||
DELAY_TIMEOUT_SELF_MSG,
|
DELAY_TIMEOUT_SELF_MSG,
|
||||||
MSG_COUNT_SELF_MSG,
|
MSG_COUNT_SELF_MSG,
|
||||||
CUSTOM_OR_NA_TYPE
|
NA
|
||||||
);
|
);
|
||||||
|
|
||||||
// backward-compatibility tests
|
// backward-compatibility tests
|
||||||
|
|||||||
@ -479,7 +479,7 @@ public final class TbMsg implements Serializable {
|
|||||||
try {
|
try {
|
||||||
return TbMsgType.valueOf(type);
|
return TbMsgType.valueOf(type);
|
||||||
} catch (IllegalArgumentException e) {
|
} catch (IllegalArgumentException e) {
|
||||||
return TbMsgType.CUSTOM_OR_NA_TYPE;
|
return TbMsgType.NA;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user