@@ -60,6 +60,7 @@ public int getBitIndex() {
60
60
private final long activeModeDuration ;
61
61
private final int activeModeThreshold ;
62
62
private final long icdNodeId ;
63
+ private final long checkInNodeId ;
63
64
private final long icdCounter ;
64
65
private final long monitoredSubject ;
65
66
private final long fabricId ;
@@ -73,6 +74,7 @@ public int getBitIndex() {
73
74
long activeModeDuration ,
74
75
int activeModeThreshold ,
75
76
long icdNodeId ,
77
+ long checkInNodeId ,
76
78
long icdCounter ,
77
79
long monitoredSubject ,
78
80
long fabricId ,
@@ -84,6 +86,7 @@ public int getBitIndex() {
84
86
this .activeModeDuration = activeModeDuration ;
85
87
this .activeModeThreshold = activeModeThreshold ;
86
88
this .icdNodeId = icdNodeId ;
89
+ this .checkInNodeId = checkInNodeId ;
87
90
this .icdCounter = icdCounter ;
88
91
this .monitoredSubject = monitoredSubject ;
89
92
this .fabricId = fabricId ;
@@ -98,6 +101,7 @@ public int getBitIndex() {
98
101
long activeModeDuration ,
99
102
int activeModeThreshold ,
100
103
long icdNodeId ,
104
+ long checkInNodeId ,
101
105
long icdCounter ,
102
106
long monitoredSubject ,
103
107
long fabricId ,
@@ -108,6 +112,7 @@ public int getBitIndex() {
108
112
this .activeModeDuration = activeModeDuration ;
109
113
this .activeModeThreshold = activeModeThreshold ;
110
114
this .icdNodeId = icdNodeId ;
115
+ this .checkInNodeId = checkInNodeId ;
111
116
this .icdCounter = icdCounter ;
112
117
this .monitoredSubject = monitoredSubject ;
113
118
this .fabricId = fabricId ;
@@ -152,11 +157,16 @@ public int getActiveModeThreshold() {
152
157
return activeModeThreshold ;
153
158
}
154
159
155
- /** Returns the ICD Node Id. */
160
+ /** Returns the ICD peer Node Id. */
156
161
public long getIcdNodeId () {
157
162
return icdNodeId ;
158
163
}
159
164
165
+ /** Returns the checkIn Node Id. */
166
+ public long getIcdCheckInNodeId () {
167
+ return checkInNodeId ;
168
+ }
169
+
160
170
/** Returns the ICD Counter. */
161
171
public long getIcdCounter () {
162
172
return icdCounter ;
@@ -186,6 +196,8 @@ public String toString() {
186
196
+ userActiveModeTriggerInstruction
187
197
+ "\n \t icdNodeId : "
188
198
+ icdNodeId
199
+ + "\n \t icdCheckInNodeId : "
200
+ + checkInNodeId
189
201
+ "\n \t icdCounter : "
190
202
+ icdCounter
191
203
+ "\n \t monitoredSubject : "
0 commit comments