34 changed files with 217 additions and 110 deletions
@ -0,0 +1,54 @@ |
|||
/** |
|||
* Copyright © 2016-2023 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.common.msg.session; |
|||
|
|||
/** |
|||
* @deprecated This enum is deprecated and will be removed in a future version. |
|||
* Note: This enum was originally part of the public API but is now specific to CoAP transport only. |
|||
* Please use {@link org.thingsboard.server.transport.coap.CoapSessionMsgType} instead. |
|||
*/ |
|||
@Deprecated(since="3.5.2", forRemoval = true) |
|||
public enum SessionMsgType { |
|||
GET_ATTRIBUTES_REQUEST(true), POST_ATTRIBUTES_REQUEST(true), GET_ATTRIBUTES_RESPONSE, |
|||
SUBSCRIBE_ATTRIBUTES_REQUEST, UNSUBSCRIBE_ATTRIBUTES_REQUEST, ATTRIBUTES_UPDATE_NOTIFICATION, |
|||
|
|||
POST_TELEMETRY_REQUEST(true), STATUS_CODE_RESPONSE, |
|||
|
|||
SUBSCRIBE_RPC_COMMANDS_REQUEST, UNSUBSCRIBE_RPC_COMMANDS_REQUEST, |
|||
TO_DEVICE_RPC_REQUEST, TO_DEVICE_RPC_RESPONSE, TO_DEVICE_RPC_RESPONSE_ACK, |
|||
|
|||
TO_SERVER_RPC_REQUEST(true), TO_SERVER_RPC_RESPONSE, |
|||
|
|||
RULE_ENGINE_ERROR, |
|||
|
|||
SESSION_OPEN, SESSION_CLOSE, |
|||
|
|||
CLAIM_REQUEST(); |
|||
|
|||
private final boolean requiresRulesProcessing; |
|||
|
|||
SessionMsgType() { |
|||
this(false); |
|||
} |
|||
|
|||
SessionMsgType(boolean requiresRulesProcessing) { |
|||
this.requiresRulesProcessing = requiresRulesProcessing; |
|||
} |
|||
|
|||
public boolean requiresRulesProcessing() { |
|||
return requiresRulesProcessing; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue