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
<description>When received within the timeout specified by CommissionNode, the client SHALL open a commissioning window on to the node which the client called RequestCommissioningApproval to have commissioned.</description>
<description>This event SHALL be sent by the server following a RequestCommissioningApproval command which the server responded to with SUCCESS.</description>
public void requestCommissioningApproval(DefaultClusterCallback callback, Long requestId, Integer vendorId, Integer productId, Optional<String> label, int timedInvokeTimeoutMs) {
61076
+
public void requestCommissioningApproval(DefaultClusterCallback callback, Long requestID, Integer vendorID, Integer productID, Optional<String> label, int timedInvokeTimeoutMs) {
61077
61077
final long commandId = 0L;
61078
61078
61079
61079
ArrayList<StructElement> elements = new ArrayList<>();
61080
-
final long requestIdFieldID = 0L;
61081
-
BaseTLVType requestIdtlvValue = new UIntType(requestId);
public void commissionNode(ReverseOpenCommissioningWindowCallback callback, Long requestId, Integer responseTimeoutSeconds, int timedInvokeTimeoutMs) {
61108
+
public void commissionNode(ReverseOpenCommissioningWindowCallback callback, Long requestID, Integer responseTimeoutSeconds, int timedInvokeTimeoutMs) {
61109
61109
final long commandId = 1L;
61110
61110
61111
61111
ArrayList<StructElement> elements = new ArrayList<>();
61112
-
final long requestIdFieldID = 0L;
61113
-
BaseTLVType requestIdtlvValue = new UIntType(requestId);
0 commit comments