@@ -62,6 +62,7 @@ public int getBitIndex() {
62
62
private final long icdNodeId ;
63
63
private final long icdCounter ;
64
64
private final long monitoredSubject ;
65
+ private final Short clientType ;
65
66
private final long fabricId ;
66
67
private final int fabricIndex ;
67
68
@@ -75,6 +76,7 @@ public int getBitIndex() {
75
76
long icdNodeId ,
76
77
long icdCounter ,
77
78
long monitoredSubject ,
79
+ Short clientType ,
78
80
long fabricId ,
79
81
int fabricIndex ) {
80
82
this .symmetricKey = symmetricKey ;
@@ -86,6 +88,7 @@ public int getBitIndex() {
86
88
this .icdNodeId = icdNodeId ;
87
89
this .icdCounter = icdCounter ;
88
90
this .monitoredSubject = monitoredSubject ;
91
+ this .clientType = clientType ;
89
92
this .fabricId = fabricId ;
90
93
this .fabricIndex = fabricIndex ;
91
94
}
@@ -100,6 +103,7 @@ public int getBitIndex() {
100
103
long icdNodeId ,
101
104
long icdCounter ,
102
105
long monitoredSubject ,
106
+ Short clientType ,
103
107
long fabricId ,
104
108
int fabricIndex ) {
105
109
this .symmetricKey = symmetricKey ;
@@ -110,6 +114,7 @@ public int getBitIndex() {
110
114
this .icdNodeId = icdNodeId ;
111
115
this .icdCounter = icdCounter ;
112
116
this .monitoredSubject = monitoredSubject ;
117
+ this .clientType = clientType ;
113
118
this .fabricId = fabricId ;
114
119
this .fabricIndex = fabricIndex ;
115
120
@@ -167,6 +172,11 @@ public long getMonitoredSubject() {
167
172
return monitoredSubject ;
168
173
}
169
174
175
+ /** Returns the ClientType. */
176
+ public Short getClientType () {
177
+ return clientType
178
+ }
179
+
170
180
/** Returns the Fabric Id */
171
181
public long getFabricId () {
172
182
return fabricId ;
@@ -190,6 +200,8 @@ public String toString() {
190
200
+ icdCounter
191
201
+ "\n \t monitoredSubject : "
192
202
+ monitoredSubject
203
+ + "\n clientType : "
204
+ + clientType
193
205
+ "\n \t fabricId : "
194
206
+ fabricId
195
207
+ "\n \t fabricIndex : "
0 commit comments