Skip to content

Commit

Permalink
Restyle
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Jun 17, 2024
1 parent 3c0a630 commit b7e0545
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/controller/java/src/chip/devicecontroller/ICDDeviceInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public int getBitIndex() {
private final long icdNodeId;
private final long icdCounter;
private final long monitoredSubject;
private final Short clientType;
private final long fabricId;
private final int fabricIndex;

Expand All @@ -75,6 +76,7 @@ public int getBitIndex() {
long icdNodeId,
long icdCounter,
long monitoredSubject,
Short clientType,
long fabricId,
int fabricIndex) {
this.symmetricKey = symmetricKey;
Expand All @@ -86,6 +88,7 @@ public int getBitIndex() {
this.icdNodeId = icdNodeId;
this.icdCounter = icdCounter;
this.monitoredSubject = monitoredSubject;
this.clientType = clientType;
this.fabricId = fabricId;
this.fabricIndex = fabricIndex;
}
Expand All @@ -100,6 +103,7 @@ public int getBitIndex() {
long icdNodeId,
long icdCounter,
long monitoredSubject,
Short clientType,
long fabricId,
int fabricIndex) {
this.symmetricKey = symmetricKey;
Expand All @@ -110,6 +114,7 @@ public int getBitIndex() {
this.icdNodeId = icdNodeId;
this.icdCounter = icdCounter;
this.monitoredSubject = monitoredSubject;
this.clientType = clientType;
this.fabricId = fabricId;
this.fabricIndex = fabricIndex;

Expand Down Expand Up @@ -167,6 +172,11 @@ public long getMonitoredSubject() {
return monitoredSubject;
}

/** Returns the ClientType. */
public Short getClientType() {
return clientType
}

/** Returns the Fabric Id */
public long getFabricId() {
return fabricId;
Expand All @@ -190,6 +200,8 @@ public String toString() {
+ icdCounter
+ "\n\tmonitoredSubject : "
+ monitoredSubject
+ "\n clientType : "
+ clientType
+ "\n\tfabricId : "
+ fabricId
+ "\n\tfabricIndex : "
Expand Down

0 comments on commit b7e0545

Please sign in to comment.