Browse Source
Merge pull request #4939 from youngSpring/device-claim-bugfix
[3.3.0] Fixed Failed to claim the device when use redis as cache
pull/4946/head
Igor Kulikov
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
common/dao-api/src/main/java/org/thingsboard/server/dao/device/claim/ClaimData.java
|
|
|
@ -18,9 +18,11 @@ package org.thingsboard.server.dao.device.claim; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
|
|
|
|
@AllArgsConstructor |
|
|
|
@Data |
|
|
|
public class ClaimData { |
|
|
|
public class ClaimData implements Serializable { |
|
|
|
|
|
|
|
private final String secretKey; |
|
|
|
private final long expirationTime; |
|
|
|
|