You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/controller/java/generated/java/chip/devicecontroller/ClusterInfoMapping.java
+21
Original file line number
Diff line number
Diff line change
@@ -2735,6 +2735,27 @@ public void onError(Exception ex) {
2735
2735
}
2736
2736
}
2737
2737
2738
+
public static class DelegatedGeneralCommissioningClusterTCUpdateDeadlineAttributeCallback implements ChipClusters.GeneralCommissioningCluster.TCUpdateDeadlineAttributeCallback, DelegatedClusterCallback {
2739
+
private ClusterCommandCallback callback;
2740
+
@Override
2741
+
public void setCallbackDelegate(ClusterCommandCallback callback) {
2742
+
this.callback = callback;
2743
+
}
2744
+
2745
+
@Override
2746
+
public void onSuccess(@Nullable Long value) {
2747
+
Map<CommandResponseInfo, Object> responseValues = new LinkedHashMap<>();
2748
+
CommandResponseInfo commandResponseInfo = new CommandResponseInfo("value", "Long");
2749
+
responseValues.put(commandResponseInfo, value);
2750
+
callback.onSuccess(responseValues);
2751
+
}
2752
+
2753
+
@Override
2754
+
public void onError(Exception ex) {
2755
+
callback.onFailure(ex);
2756
+
}
2757
+
}
2758
+
2738
2759
public static class DelegatedGeneralCommissioningClusterGeneratedCommandListAttributeCallback implements ChipClusters.GeneralCommissioningCluster.GeneratedCommandListAttributeCallback, DelegatedClusterCallback {
0 commit comments