Commit c5b03cb5b38d8a5ff935c797ff515cea1d11214b
1 parent
75af05ed
Fix for RPC calls in Kafka actions
Showing
1 changed file
with
3 additions
and
3 deletions
... | ... | @@ -16,16 +16,16 @@ |
16 | 16 | package org.thingsboard.server.common.msg.core; |
17 | 17 | |
18 | 18 | import lombok.Data; |
19 | -import org.thingsboard.server.common.msg.session.FromDeviceMsg; | |
19 | +import org.thingsboard.server.common.msg.session.FromDeviceRequestMsg; | |
20 | 20 | import org.thingsboard.server.common.msg.session.MsgType; |
21 | 21 | |
22 | 22 | /** |
23 | 23 | * @author Andrew Shvayka |
24 | 24 | */ |
25 | 25 | @Data |
26 | -public class ToServerRpcRequestMsg implements FromDeviceMsg { | |
26 | +public class ToServerRpcRequestMsg implements FromDeviceRequestMsg { | |
27 | 27 | |
28 | - private final int requestId; | |
28 | + private final Integer requestId; | |
29 | 29 | private final String method; |
30 | 30 | private final String params; |
31 | 31 | ... | ... |