diff --git a/src/controller/java/templates/ClusterInfo-java.zapt b/src/controller/java/templates/ClusterInfo-java.zapt index 5c4ffafccfc532..b775fb03f6cf31 100644 --- a/src/controller/java/templates/ClusterInfo-java.zapt +++ b/src/controller/java/templates/ClusterInfo-java.zapt @@ -18,10 +18,9 @@ import chip.devicecontroller.ChipClusters.DefaultClusterCallback; import chip.devicecontroller.ClusterReadMapping; import chip.devicecontroller.ClusterWriteMapping; - public class ClusterInfoMapping { - public class DelegatedCharStringAttributeCallback implements ChipClusters.CharStringAttributeCallback, DelegatedClusterCallback { + static public class DelegatedCharStringAttributeCallback implements ChipClusters.CharStringAttributeCallback, DelegatedClusterCallback { /** Indicates a successful read for a CHAR_STRING attribute. */ private ClusterCommandCallback callback; @@ -44,7 +43,7 @@ public class ClusterInfoMapping { } } - public class DelegatedOctetStringAttributeCallback implements ChipClusters.OctetStringAttributeCallback, DelegatedClusterCallback { + static public class DelegatedOctetStringAttributeCallback implements ChipClusters.OctetStringAttributeCallback, DelegatedClusterCallback { /** Indicates a successful read for an OCTET_STRING attribute. */ private ClusterCommandCallback callback; @@ -67,7 +66,7 @@ public class ClusterInfoMapping { } } - public class DelegatedIntegerAttributeCallback implements ChipClusters.IntegerAttributeCallback, DelegatedClusterCallback { + static public class DelegatedIntegerAttributeCallback implements ChipClusters.IntegerAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @Override @@ -89,7 +88,7 @@ public class ClusterInfoMapping { } } - public class DelegatedLongAttributeCallback implements ChipClusters.LongAttributeCallback, DelegatedClusterCallback { + static public class DelegatedLongAttributeCallback implements ChipClusters.LongAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @Override @@ -111,7 +110,7 @@ public class ClusterInfoMapping { } } - public class DelegatedBooleanAttributeCallback implements ChipClusters.BooleanAttributeCallback, DelegatedClusterCallback { + static public class DelegatedBooleanAttributeCallback implements ChipClusters.BooleanAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @Override @@ -133,7 +132,7 @@ public class ClusterInfoMapping { } } - class DelegatedDefaultClusterCallback implements DefaultClusterCallback, DelegatedClusterCallback { + static class DelegatedDefaultClusterCallback implements DefaultClusterCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @Override @@ -155,7 +154,7 @@ public class ClusterInfoMapping { } {{#chip_client_clusters}} {{#chip_cluster_responses}} - public class Delegated{{asUpperCamelCase name}}Callback implements ChipClusters.{{asUpperCamelCase ../name}}Cluster.{{asUpperCamelCase name}}Callback, DelegatedClusterCallback { + static public class Delegated{{asUpperCamelCase name}}Callback implements ChipClusters.{{asUpperCamelCase ../name}}Cluster.{{asUpperCamelCase name}}Callback, DelegatedClusterCallback { private ClusterCommandCallback callback; @Override public void setCallbackDelegate(ClusterCommandCallback callback) { @@ -203,7 +202,7 @@ public class ClusterInfoMapping { {{/if}} - public class Delegated{{asUpperCamelCase name}}AttributeCallback implements ChipClusters.{{asUpperCamelCase ../name}}Cluster.{{asUpperCamelCase name}}AttributeCallback, DelegatedClusterCallback { + static public class Delegated{{asUpperCamelCase name}}AttributeCallback implements ChipClusters.{{asUpperCamelCase ../name}}Cluster.{{asUpperCamelCase name}}AttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @Override public void setCallbackDelegate(ClusterCommandCallback callback) { diff --git a/src/controller/java/templates/ClusterInfo-read-interaction.zapt b/src/controller/java/templates/ClusterInfo-read-interaction.zapt index 3f7147eac3558b..564fb91719d7aa 100644 --- a/src/controller/java/templates/ClusterInfo-read-interaction.zapt +++ b/src/controller/java/templates/ClusterInfo-read-interaction.zapt @@ -3,26 +3,15 @@ package chip.devicecontroller; -import java.util.ArrayList; +import chip.clusterinfo.CommandParameterInfo; +import chip.clusterinfo.InteractionInfo; +import java.util.HashMap; import java.util.LinkedHashMap; import java.util.Map; -import java.util.List; -import java.util.HashMap; -import chip.clusterinfo.ClusterInfo; -import chip.clusterinfo.InteractionInfo; -import chip.clusterinfo.CommandParameterInfo; -import chip.clusterinfo.DelegatedClusterCallback; -import chip.clusterinfo.ClusterCommandCallback; -import chip.clusterinfo.CommandResponseInfo; -import chip.devicecontroller.ChipClusters.DefaultClusterCallback; -import chip.devicecontroller.ClusterInfoMapping.DelegatedIntegerAttributeCallback; - - public class ClusterReadMapping { public Map> getReadAttributeMap() { - ClusterInfoMapping clusterInfoMapping = new ClusterInfoMapping(); Map> readAttributeMap = new HashMap<>(); {{#chip_client_clusters}} Map read{{asUpperCamelCase name}}InteractionInfo = new LinkedHashMap<>(); @@ -39,9 +28,9 @@ public class ClusterReadMapping { ); }, {{#if isList}} - () -> clusterInfoMapping.new Delegated{{asUpperCamelCase name}}AttributeCallback(), + () -> new ClusterInfoMapping.Delegated{{asUpperCamelCase name}}AttributeCallback(), {{else}} - () -> clusterInfoMapping.new Delegated{{convertAttributeCallbackTypeToJavaName chipCallback.type}}AttributeCallback(), + () -> new ClusterInfoMapping.Delegated{{convertAttributeCallbackTypeToJavaName chipCallback.type}}AttributeCallback(), {{/if}} read{{asUpperCamelCase ../name}}{{asUpperCamelCase name}}CommandParams ); @@ -53,5 +42,4 @@ public class ClusterReadMapping { } } -{{/if}} - +{{/if}} \ No newline at end of file diff --git a/src/controller/java/templates/ClusterInfo-write-interaction.zapt b/src/controller/java/templates/ClusterInfo-write-interaction.zapt index 6fc1a6fbb72c1d..265fdf4c7ab599 100644 --- a/src/controller/java/templates/ClusterInfo-write-interaction.zapt +++ b/src/controller/java/templates/ClusterInfo-write-interaction.zapt @@ -3,23 +3,15 @@ package chip.devicecontroller; -import java.util.ArrayList; -import java.util.LinkedHashMap; -import java.util.Map; -import java.util.List; -import java.util.HashMap; -import chip.clusterinfo.ClusterInfo; -import chip.clusterinfo.InteractionInfo; import chip.clusterinfo.CommandParameterInfo; -import chip.clusterinfo.DelegatedClusterCallback; -import chip.clusterinfo.ClusterCommandCallback; -import chip.clusterinfo.CommandResponseInfo; +import chip.clusterinfo.InteractionInfo; import chip.devicecontroller.ChipClusters.DefaultClusterCallback; - +import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.Map; public class ClusterWriteMapping { public Map> getWriteAttributeMap() { - ClusterInfoMapping clusterInfoMapping = new ClusterInfoMapping(); Map> writeAttributeMap = new HashMap<>(); {{#chip_client_clusters}} Map write{{asUpperCamelCase name}}InteractionInfo = new LinkedHashMap<>(); @@ -36,7 +28,7 @@ public class ClusterWriteMapping { commandArguments.get("value") ); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), write{{asUpperCamelCase ../name}}{{asUpperCamelCase name}}CommandParams ); write{{asUpperCamelCase ../name}}InteractionInfo.put("write{{asUpperCamelCase name}}Attribute", write{{asUpperCamelCase ../name}}{{asUpperCamelCase name}}AttributeInteractionInfo); diff --git a/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java b/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java index da7e000580978b..d31c1de396be50 100644 --- a/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java +++ b/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java @@ -33,7 +33,7 @@ public class ClusterInfoMapping { - public class DelegatedCharStringAttributeCallback + public static class DelegatedCharStringAttributeCallback implements ChipClusters.CharStringAttributeCallback, DelegatedClusterCallback { /** Indicates a successful read for a CHAR_STRING attribute. */ private ClusterCommandCallback callback; @@ -57,7 +57,7 @@ public void onError(Exception error) { } } - public class DelegatedOctetStringAttributeCallback + public static class DelegatedOctetStringAttributeCallback implements ChipClusters.OctetStringAttributeCallback, DelegatedClusterCallback { /** Indicates a successful read for an OCTET_STRING attribute. */ private ClusterCommandCallback callback; @@ -81,7 +81,7 @@ public void onError(Exception error) { } } - public class DelegatedIntegerAttributeCallback + public static class DelegatedIntegerAttributeCallback implements ChipClusters.IntegerAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -104,7 +104,7 @@ public void onError(Exception error) { } } - public class DelegatedLongAttributeCallback + public static class DelegatedLongAttributeCallback implements ChipClusters.LongAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -127,7 +127,7 @@ public void onError(Exception error) { } } - public class DelegatedBooleanAttributeCallback + public static class DelegatedBooleanAttributeCallback implements ChipClusters.BooleanAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -150,7 +150,7 @@ public void onError(Exception error) { } } - class DelegatedDefaultClusterCallback + static class DelegatedDefaultClusterCallback implements DefaultClusterCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -173,7 +173,7 @@ public void onError(Exception e) { } } - public class DelegatedGetSetupPINResponseCallback + public static class DelegatedGetSetupPINResponseCallback implements ChipClusters.AccountLoginCluster.GetSetupPINResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -197,7 +197,7 @@ public void onError(Exception error) { } } - public class DelegatedLaunchAppResponseCallback + public static class DelegatedLaunchAppResponseCallback implements ChipClusters.ApplicationLauncherCluster.LaunchAppResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -223,7 +223,7 @@ public void onError(Exception error) { } } - public class DelegatedApplicationLauncherListAttributeCallback + public static class DelegatedApplicationLauncherListAttributeCallback implements ChipClusters.ApplicationLauncherCluster.ApplicationLauncherListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -249,7 +249,7 @@ public void onError(Exception ex) { } } - public class DelegatedAudioOutputListAttributeCallback + public static class DelegatedAudioOutputListAttributeCallback implements ChipClusters.AudioOutputCluster.AudioOutputListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -277,7 +277,7 @@ public void onError(Exception ex) { } } - public class DelegatedActionListAttributeCallback + public static class DelegatedActionListAttributeCallback implements ChipClusters.BridgedActionsCluster.ActionListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -304,7 +304,7 @@ public void onError(Exception ex) { } } - public class DelegatedEndpointListAttributeCallback + public static class DelegatedEndpointListAttributeCallback implements ChipClusters.BridgedActionsCluster.EndpointListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -332,7 +332,7 @@ public void onError(Exception ex) { } } - public class DelegatedLaunchContentResponseCallback + public static class DelegatedLaunchContentResponseCallback implements ChipClusters.ContentLauncherCluster.LaunchContentResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -359,7 +359,7 @@ public void onError(Exception error) { } } - public class DelegatedLaunchURLResponseCallback + public static class DelegatedLaunchURLResponseCallback implements ChipClusters.ContentLauncherCluster.LaunchURLResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -386,7 +386,7 @@ public void onError(Exception error) { } } - public class DelegatedAcceptsHeaderListAttributeCallback + public static class DelegatedAcceptsHeaderListAttributeCallback implements ChipClusters.ContentLauncherCluster.AcceptsHeaderListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -412,7 +412,7 @@ public void onError(Exception ex) { } } - public class DelegatedSupportedStreamingTypesAttributeCallback + public static class DelegatedSupportedStreamingTypesAttributeCallback implements ChipClusters.ContentLauncherCluster.SupportedStreamingTypesAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -438,7 +438,7 @@ public void onError(Exception ex) { } } - public class DelegatedDeviceListAttributeCallback + public static class DelegatedDeviceListAttributeCallback implements ChipClusters.DescriptorCluster.DeviceListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -465,7 +465,7 @@ public void onError(Exception ex) { } } - public class DelegatedServerListAttributeCallback + public static class DelegatedServerListAttributeCallback implements ChipClusters.DescriptorCluster.ServerListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -490,7 +490,7 @@ public void onError(Exception ex) { } } - public class DelegatedClientListAttributeCallback + public static class DelegatedClientListAttributeCallback implements ChipClusters.DescriptorCluster.ClientListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -515,7 +515,7 @@ public void onError(Exception ex) { } } - public class DelegatedPartsListAttributeCallback + public static class DelegatedPartsListAttributeCallback implements ChipClusters.DescriptorCluster.PartsListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -541,7 +541,7 @@ public void onError(Exception ex) { } } - public class DelegatedRetrieveLogsResponseCallback + public static class DelegatedRetrieveLogsResponseCallback implements ChipClusters.DiagnosticLogsCluster.RetrieveLogsResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -572,7 +572,7 @@ public void onError(Exception error) { } } - public class DelegatedClearAllPinsResponseCallback + public static class DelegatedClearAllPinsResponseCallback implements ChipClusters.DoorLockCluster.ClearAllPinsResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -596,7 +596,7 @@ public void onError(Exception error) { } } - public class DelegatedClearAllRfidsResponseCallback + public static class DelegatedClearAllRfidsResponseCallback implements ChipClusters.DoorLockCluster.ClearAllRfidsResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -620,7 +620,7 @@ public void onError(Exception error) { } } - public class DelegatedClearHolidayScheduleResponseCallback + public static class DelegatedClearHolidayScheduleResponseCallback implements ChipClusters.DoorLockCluster.ClearHolidayScheduleResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -644,7 +644,7 @@ public void onError(Exception error) { } } - public class DelegatedClearPinResponseCallback + public static class DelegatedClearPinResponseCallback implements ChipClusters.DoorLockCluster.ClearPinResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -667,7 +667,7 @@ public void onError(Exception error) { } } - public class DelegatedClearRfidResponseCallback + public static class DelegatedClearRfidResponseCallback implements ChipClusters.DoorLockCluster.ClearRfidResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -690,7 +690,7 @@ public void onError(Exception error) { } } - public class DelegatedClearWeekdayScheduleResponseCallback + public static class DelegatedClearWeekdayScheduleResponseCallback implements ChipClusters.DoorLockCluster.ClearWeekdayScheduleResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -714,7 +714,7 @@ public void onError(Exception error) { } } - public class DelegatedClearYeardayScheduleResponseCallback + public static class DelegatedClearYeardayScheduleResponseCallback implements ChipClusters.DoorLockCluster.ClearYeardayScheduleResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -738,7 +738,7 @@ public void onError(Exception error) { } } - public class DelegatedGetHolidayScheduleResponseCallback + public static class DelegatedGetHolidayScheduleResponseCallback implements ChipClusters.DoorLockCluster.GetHolidayScheduleResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -778,7 +778,7 @@ public void onError(Exception error) { } } - public class DelegatedGetLogRecordResponseCallback + public static class DelegatedGetLogRecordResponseCallback implements ChipClusters.DoorLockCluster.GetLogRecordResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -822,7 +822,7 @@ public void onError(Exception error) { } } - public class DelegatedGetPinResponseCallback + public static class DelegatedGetPinResponseCallback implements ChipClusters.DoorLockCluster.GetPinResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -851,7 +851,7 @@ public void onError(Exception error) { } } - public class DelegatedGetRfidResponseCallback + public static class DelegatedGetRfidResponseCallback implements ChipClusters.DoorLockCluster.GetRfidResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -880,7 +880,7 @@ public void onError(Exception error) { } } - public class DelegatedGetUserTypeResponseCallback + public static class DelegatedGetUserTypeResponseCallback implements ChipClusters.DoorLockCluster.GetUserTypeResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -906,7 +906,7 @@ public void onError(Exception error) { } } - public class DelegatedGetWeekdayScheduleResponseCallback + public static class DelegatedGetWeekdayScheduleResponseCallback implements ChipClusters.DoorLockCluster.GetWeekdayScheduleResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -952,7 +952,7 @@ public void onError(Exception error) { } } - public class DelegatedGetYeardayScheduleResponseCallback + public static class DelegatedGetYeardayScheduleResponseCallback implements ChipClusters.DoorLockCluster.GetYeardayScheduleResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -987,7 +987,7 @@ public void onError(Exception error) { } } - public class DelegatedLockDoorResponseCallback + public static class DelegatedLockDoorResponseCallback implements ChipClusters.DoorLockCluster.LockDoorResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1010,7 +1010,7 @@ public void onError(Exception error) { } } - public class DelegatedSetHolidayScheduleResponseCallback + public static class DelegatedSetHolidayScheduleResponseCallback implements ChipClusters.DoorLockCluster.SetHolidayScheduleResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1034,7 +1034,7 @@ public void onError(Exception error) { } } - public class DelegatedSetPinResponseCallback + public static class DelegatedSetPinResponseCallback implements ChipClusters.DoorLockCluster.SetPinResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1057,7 +1057,7 @@ public void onError(Exception error) { } } - public class DelegatedSetRfidResponseCallback + public static class DelegatedSetRfidResponseCallback implements ChipClusters.DoorLockCluster.SetRfidResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1080,7 +1080,7 @@ public void onError(Exception error) { } } - public class DelegatedSetUserTypeResponseCallback + public static class DelegatedSetUserTypeResponseCallback implements ChipClusters.DoorLockCluster.SetUserTypeResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1104,7 +1104,7 @@ public void onError(Exception error) { } } - public class DelegatedSetWeekdayScheduleResponseCallback + public static class DelegatedSetWeekdayScheduleResponseCallback implements ChipClusters.DoorLockCluster.SetWeekdayScheduleResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1128,7 +1128,7 @@ public void onError(Exception error) { } } - public class DelegatedSetYeardayScheduleResponseCallback + public static class DelegatedSetYeardayScheduleResponseCallback implements ChipClusters.DoorLockCluster.SetYeardayScheduleResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1152,7 +1152,7 @@ public void onError(Exception error) { } } - public class DelegatedUnlockDoorResponseCallback + public static class DelegatedUnlockDoorResponseCallback implements ChipClusters.DoorLockCluster.UnlockDoorResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1175,7 +1175,7 @@ public void onError(Exception error) { } } - public class DelegatedUnlockWithTimeoutResponseCallback + public static class DelegatedUnlockWithTimeoutResponseCallback implements ChipClusters.DoorLockCluster.UnlockWithTimeoutResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1199,7 +1199,7 @@ public void onError(Exception error) { } } - public class DelegatedLabelListAttributeCallback + public static class DelegatedLabelListAttributeCallback implements ChipClusters.FixedLabelCluster.LabelListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1226,7 +1226,7 @@ public void onError(Exception ex) { } } - public class DelegatedArmFailSafeResponseCallback + public static class DelegatedArmFailSafeResponseCallback implements ChipClusters.GeneralCommissioningCluster.ArmFailSafeResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1252,7 +1252,7 @@ public void onError(Exception error) { } } - public class DelegatedCommissioningCompleteResponseCallback + public static class DelegatedCommissioningCompleteResponseCallback implements ChipClusters.GeneralCommissioningCluster.CommissioningCompleteResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1278,7 +1278,7 @@ public void onError(Exception error) { } } - public class DelegatedSetRegulatoryConfigResponseCallback + public static class DelegatedSetRegulatoryConfigResponseCallback implements ChipClusters.GeneralCommissioningCluster.SetRegulatoryConfigResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1304,7 +1304,7 @@ public void onError(Exception error) { } } - public class DelegatedBasicCommissioningInfoListAttributeCallback + public static class DelegatedBasicCommissioningInfoListAttributeCallback implements ChipClusters.GeneralCommissioningCluster .BasicCommissioningInfoListAttributeCallback, DelegatedClusterCallback { @@ -1335,7 +1335,7 @@ public void onError(Exception ex) { } } - public class DelegatedNetworkInterfacesAttributeCallback + public static class DelegatedNetworkInterfacesAttributeCallback implements ChipClusters.GeneralDiagnosticsCluster.NetworkInterfacesAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1364,7 +1364,7 @@ public void onError(Exception ex) { } } - public class DelegatedGroupsAttributeCallback + public static class DelegatedGroupsAttributeCallback implements ChipClusters.GroupKeyManagementCluster.GroupsAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1391,7 +1391,7 @@ public void onError(Exception ex) { } } - public class DelegatedGroupKeysAttributeCallback + public static class DelegatedGroupKeysAttributeCallback implements ChipClusters.GroupKeyManagementCluster.GroupKeysAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1419,7 +1419,7 @@ public void onError(Exception ex) { } } - public class DelegatedAddGroupResponseCallback + public static class DelegatedAddGroupResponseCallback implements ChipClusters.GroupsCluster.AddGroupResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1444,7 +1444,7 @@ public void onError(Exception error) { } } - public class DelegatedGetGroupMembershipResponseCallback + public static class DelegatedGetGroupMembershipResponseCallback implements ChipClusters.GroupsCluster.GetGroupMembershipResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1475,7 +1475,7 @@ public void onError(Exception error) { } } - public class DelegatedRemoveGroupResponseCallback + public static class DelegatedRemoveGroupResponseCallback implements ChipClusters.GroupsCluster.RemoveGroupResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1500,7 +1500,7 @@ public void onError(Exception error) { } } - public class DelegatedViewGroupResponseCallback + public static class DelegatedViewGroupResponseCallback implements ChipClusters.GroupsCluster.ViewGroupResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1527,7 +1527,7 @@ public void onError(Exception error) { } } - public class DelegatedIdentifyQueryResponseCallback + public static class DelegatedIdentifyQueryResponseCallback implements ChipClusters.IdentifyCluster.IdentifyQueryResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1551,7 +1551,7 @@ public void onError(Exception error) { } } - public class DelegatedSendKeyResponseCallback + public static class DelegatedSendKeyResponseCallback implements ChipClusters.KeypadInputCluster.SendKeyResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1574,7 +1574,7 @@ public void onError(Exception error) { } } - public class DelegatedMediaInputListAttributeCallback + public static class DelegatedMediaInputListAttributeCallback implements ChipClusters.MediaInputCluster.MediaInputListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1601,7 +1601,7 @@ public void onError(Exception ex) { } } - public class DelegatedMediaFastForwardResponseCallback + public static class DelegatedMediaFastForwardResponseCallback implements ChipClusters.MediaPlaybackCluster.MediaFastForwardResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1626,7 +1626,7 @@ public void onError(Exception error) { } } - public class DelegatedMediaNextResponseCallback + public static class DelegatedMediaNextResponseCallback implements ChipClusters.MediaPlaybackCluster.MediaNextResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1651,7 +1651,7 @@ public void onError(Exception error) { } } - public class DelegatedMediaPauseResponseCallback + public static class DelegatedMediaPauseResponseCallback implements ChipClusters.MediaPlaybackCluster.MediaPauseResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1676,7 +1676,7 @@ public void onError(Exception error) { } } - public class DelegatedMediaPlayResponseCallback + public static class DelegatedMediaPlayResponseCallback implements ChipClusters.MediaPlaybackCluster.MediaPlayResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1701,7 +1701,7 @@ public void onError(Exception error) { } } - public class DelegatedMediaPreviousResponseCallback + public static class DelegatedMediaPreviousResponseCallback implements ChipClusters.MediaPlaybackCluster.MediaPreviousResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1726,7 +1726,7 @@ public void onError(Exception error) { } } - public class DelegatedMediaRewindResponseCallback + public static class DelegatedMediaRewindResponseCallback implements ChipClusters.MediaPlaybackCluster.MediaRewindResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1751,7 +1751,7 @@ public void onError(Exception error) { } } - public class DelegatedMediaSeekResponseCallback + public static class DelegatedMediaSeekResponseCallback implements ChipClusters.MediaPlaybackCluster.MediaSeekResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1776,7 +1776,7 @@ public void onError(Exception error) { } } - public class DelegatedMediaSkipBackwardResponseCallback + public static class DelegatedMediaSkipBackwardResponseCallback implements ChipClusters.MediaPlaybackCluster.MediaSkipBackwardResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1801,7 +1801,7 @@ public void onError(Exception error) { } } - public class DelegatedMediaSkipForwardResponseCallback + public static class DelegatedMediaSkipForwardResponseCallback implements ChipClusters.MediaPlaybackCluster.MediaSkipForwardResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1826,7 +1826,7 @@ public void onError(Exception error) { } } - public class DelegatedMediaStartOverResponseCallback + public static class DelegatedMediaStartOverResponseCallback implements ChipClusters.MediaPlaybackCluster.MediaStartOverResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1851,7 +1851,7 @@ public void onError(Exception error) { } } - public class DelegatedMediaStopResponseCallback + public static class DelegatedMediaStopResponseCallback implements ChipClusters.MediaPlaybackCluster.MediaStopResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1876,7 +1876,7 @@ public void onError(Exception error) { } } - public class DelegatedSupportedModesAttributeCallback + public static class DelegatedSupportedModesAttributeCallback implements ChipClusters.ModeSelectCluster.SupportedModesAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1903,7 +1903,7 @@ public void onError(Exception ex) { } } - public class DelegatedAddThreadNetworkResponseCallback + public static class DelegatedAddThreadNetworkResponseCallback implements ChipClusters.NetworkCommissioningCluster.AddThreadNetworkResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1929,7 +1929,7 @@ public void onError(Exception error) { } } - public class DelegatedAddWiFiNetworkResponseCallback + public static class DelegatedAddWiFiNetworkResponseCallback implements ChipClusters.NetworkCommissioningCluster.AddWiFiNetworkResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1955,7 +1955,7 @@ public void onError(Exception error) { } } - public class DelegatedDisableNetworkResponseCallback + public static class DelegatedDisableNetworkResponseCallback implements ChipClusters.NetworkCommissioningCluster.DisableNetworkResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -1981,7 +1981,7 @@ public void onError(Exception error) { } } - public class DelegatedEnableNetworkResponseCallback + public static class DelegatedEnableNetworkResponseCallback implements ChipClusters.NetworkCommissioningCluster.EnableNetworkResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2007,7 +2007,7 @@ public void onError(Exception error) { } } - public class DelegatedRemoveNetworkResponseCallback + public static class DelegatedRemoveNetworkResponseCallback implements ChipClusters.NetworkCommissioningCluster.RemoveNetworkResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2033,7 +2033,7 @@ public void onError(Exception error) { } } - public class DelegatedScanNetworksResponseCallback + public static class DelegatedScanNetworksResponseCallback implements ChipClusters.NetworkCommissioningCluster.ScanNetworksResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2068,7 +2068,7 @@ public void onError(Exception error) { } } - public class DelegatedUpdateThreadNetworkResponseCallback + public static class DelegatedUpdateThreadNetworkResponseCallback implements ChipClusters.NetworkCommissioningCluster.UpdateThreadNetworkResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2094,7 +2094,7 @@ public void onError(Exception error) { } } - public class DelegatedUpdateWiFiNetworkResponseCallback + public static class DelegatedUpdateWiFiNetworkResponseCallback implements ChipClusters.NetworkCommissioningCluster.UpdateWiFiNetworkResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2120,7 +2120,7 @@ public void onError(Exception error) { } } - public class DelegatedApplyUpdateResponseCallback + public static class DelegatedApplyUpdateResponseCallback implements ChipClusters.OtaSoftwareUpdateProviderCluster.ApplyUpdateResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2147,7 +2147,7 @@ public void onError(Exception error) { } } - public class DelegatedQueryImageResponseCallback + public static class DelegatedQueryImageResponseCallback implements ChipClusters.OtaSoftwareUpdateProviderCluster.QueryImageResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2199,7 +2199,7 @@ public void onError(Exception error) { } } - public class DelegatedAttestationResponseCallback + public static class DelegatedAttestationResponseCallback implements ChipClusters.OperationalCredentialsCluster.AttestationResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2226,7 +2226,7 @@ public void onError(Exception error) { } } - public class DelegatedCertificateChainResponseCallback + public static class DelegatedCertificateChainResponseCallback implements ChipClusters.OperationalCredentialsCluster.CertificateChainResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2251,7 +2251,7 @@ public void onError(Exception error) { } } - public class DelegatedNOCResponseCallback + public static class DelegatedNOCResponseCallback implements ChipClusters.OperationalCredentialsCluster.NOCResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2279,7 +2279,7 @@ public void onError(Exception error) { } } - public class DelegatedOpCSRResponseCallback + public static class DelegatedOpCSRResponseCallback implements ChipClusters.OperationalCredentialsCluster.OpCSRResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2307,7 +2307,7 @@ public void onError(Exception error) { } } - public class DelegatedFabricsListAttributeCallback + public static class DelegatedFabricsListAttributeCallback implements ChipClusters.OperationalCredentialsCluster.FabricsListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2335,7 +2335,7 @@ public void onError(Exception ex) { } } - public class DelegatedTrustedRootCertificatesAttributeCallback + public static class DelegatedTrustedRootCertificatesAttributeCallback implements ChipClusters.OperationalCredentialsCluster .TrustedRootCertificatesAttributeCallback, DelegatedClusterCallback { @@ -2362,7 +2362,7 @@ public void onError(Exception ex) { } } - public class DelegatedActiveBatteryFaultsAttributeCallback + public static class DelegatedActiveBatteryFaultsAttributeCallback implements ChipClusters.PowerSourceCluster.ActiveBatteryFaultsAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2388,7 +2388,7 @@ public void onError(Exception ex) { } } - public class DelegatedAddSceneResponseCallback + public static class DelegatedAddSceneResponseCallback implements ChipClusters.ScenesCluster.AddSceneResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2415,7 +2415,7 @@ public void onError(Exception error) { } } - public class DelegatedGetSceneMembershipResponseCallback + public static class DelegatedGetSceneMembershipResponseCallback implements ChipClusters.ScenesCluster.GetSceneMembershipResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2450,7 +2450,7 @@ public void onError(Exception error) { } } - public class DelegatedRemoveAllScenesResponseCallback + public static class DelegatedRemoveAllScenesResponseCallback implements ChipClusters.ScenesCluster.RemoveAllScenesResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2476,7 +2476,7 @@ public void onError(Exception error) { } } - public class DelegatedRemoveSceneResponseCallback + public static class DelegatedRemoveSceneResponseCallback implements ChipClusters.ScenesCluster.RemoveSceneResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2503,7 +2503,7 @@ public void onError(Exception error) { } } - public class DelegatedStoreSceneResponseCallback + public static class DelegatedStoreSceneResponseCallback implements ChipClusters.ScenesCluster.StoreSceneResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2530,7 +2530,7 @@ public void onError(Exception error) { } } - public class DelegatedViewSceneResponseCallback + public static class DelegatedViewSceneResponseCallback implements ChipClusters.ScenesCluster.ViewSceneResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2567,7 +2567,7 @@ public void onError(Exception error) { } } - public class DelegatedThreadMetricsAttributeCallback + public static class DelegatedThreadMetricsAttributeCallback implements ChipClusters.SoftwareDiagnosticsCluster.ThreadMetricsAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2595,7 +2595,7 @@ public void onError(Exception ex) { } } - public class DelegatedChangeChannelResponseCallback + public static class DelegatedChangeChannelResponseCallback implements ChipClusters.TvChannelCluster.ChangeChannelResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2624,7 +2624,7 @@ public void onError(Exception error) { } } - public class DelegatedTvChannelListAttributeCallback + public static class DelegatedTvChannelListAttributeCallback implements ChipClusters.TvChannelCluster.TvChannelListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2651,7 +2651,7 @@ public void onError(Exception ex) { } } - public class DelegatedNavigateTargetResponseCallback + public static class DelegatedNavigateTargetResponseCallback implements ChipClusters.TargetNavigatorCluster.NavigateTargetResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2677,7 +2677,7 @@ public void onError(Exception error) { } } - public class DelegatedTargetNavigatorListAttributeCallback + public static class DelegatedTargetNavigatorListAttributeCallback implements ChipClusters.TargetNavigatorCluster.TargetNavigatorListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2706,7 +2706,7 @@ public void onError(Exception ex) { } } - public class DelegatedBooleanResponseCallback + public static class DelegatedBooleanResponseCallback implements ChipClusters.TestClusterCluster.BooleanResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2729,7 +2729,7 @@ public void onError(Exception error) { } } - public class DelegatedTestAddArgumentsResponseCallback + public static class DelegatedTestAddArgumentsResponseCallback implements ChipClusters.TestClusterCluster.TestAddArgumentsResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2753,7 +2753,7 @@ public void onError(Exception error) { } } - public class DelegatedTestEnumsResponseCallback + public static class DelegatedTestEnumsResponseCallback implements ChipClusters.TestClusterCluster.TestEnumsResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2779,7 +2779,7 @@ public void onError(Exception error) { } } - public class DelegatedTestListInt8UReverseResponseCallback + public static class DelegatedTestListInt8UReverseResponseCallback implements ChipClusters.TestClusterCluster.TestListInt8UReverseResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2806,7 +2806,7 @@ public void onError(Exception error) { } } - public class DelegatedTestNullableOptionalResponseCallback + public static class DelegatedTestNullableOptionalResponseCallback implements ChipClusters.TestClusterCluster.TestNullableOptionalResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2838,7 +2838,7 @@ public void onError(Exception error) { } } - public class DelegatedTestSpecificResponseCallback + public static class DelegatedTestSpecificResponseCallback implements ChipClusters.TestClusterCluster.TestSpecificResponseCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2862,7 +2862,7 @@ public void onError(Exception error) { } } - public class DelegatedListInt8uAttributeCallback + public static class DelegatedListInt8uAttributeCallback implements ChipClusters.TestClusterCluster.ListInt8uAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2888,7 +2888,7 @@ public void onError(Exception ex) { } } - public class DelegatedListOctetStringAttributeCallback + public static class DelegatedListOctetStringAttributeCallback implements ChipClusters.TestClusterCluster.ListOctetStringAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2914,7 +2914,7 @@ public void onError(Exception ex) { } } - public class DelegatedListStructOctetStringAttributeCallback + public static class DelegatedListStructOctetStringAttributeCallback implements ChipClusters.TestClusterCluster.ListStructOctetStringAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2942,7 +2942,7 @@ public void onError(Exception ex) { } } - public class DelegatedListNullablesAndOptionalsStructAttributeCallback + public static class DelegatedListNullablesAndOptionalsStructAttributeCallback implements ChipClusters.TestClusterCluster.ListNullablesAndOptionalsStructAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -2971,7 +2971,7 @@ public void onError(Exception ex) { } } - public class DelegatedNeighborTableListAttributeCallback + public static class DelegatedNeighborTableListAttributeCallback implements ChipClusters.ThreadNetworkDiagnosticsCluster.NeighborTableListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -3000,7 +3000,7 @@ public void onError(Exception ex) { } } - public class DelegatedRouteTableListAttributeCallback + public static class DelegatedRouteTableListAttributeCallback implements ChipClusters.ThreadNetworkDiagnosticsCluster.RouteTableListAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -3029,7 +3029,7 @@ public void onError(Exception ex) { } } - public class DelegatedSecurityPolicyAttributeCallback + public static class DelegatedSecurityPolicyAttributeCallback implements ChipClusters.ThreadNetworkDiagnosticsCluster.SecurityPolicyAttributeCallback, DelegatedClusterCallback { private ClusterCommandCallback callback; @@ -3058,7 +3058,7 @@ public void onError(Exception ex) { } } - public class DelegatedOperationalDatasetComponentsAttributeCallback + public static class DelegatedOperationalDatasetComponentsAttributeCallback implements ChipClusters.ThreadNetworkDiagnosticsCluster .OperationalDatasetComponentsAttributeCallback, DelegatedClusterCallback { @@ -3089,7 +3089,7 @@ public void onError(Exception ex) { } } - public class DelegatedActiveNetworkFaultsListAttributeCallback + public static class DelegatedActiveNetworkFaultsListAttributeCallback implements ChipClusters.ThreadNetworkDiagnosticsCluster .ActiveNetworkFaultsListAttributeCallback, DelegatedClusterCallback { diff --git a/src/controller/java/zap-generated/chip/devicecontroller/ClusterReadMapping.java b/src/controller/java/zap-generated/chip/devicecontroller/ClusterReadMapping.java index b61659b2e20100..094c81e7087523 100644 --- a/src/controller/java/zap-generated/chip/devicecontroller/ClusterReadMapping.java +++ b/src/controller/java/zap-generated/chip/devicecontroller/ClusterReadMapping.java @@ -21,7 +21,6 @@ import chip.clusterinfo.CommandParameterInfo; import chip.clusterinfo.InteractionInfo; -import chip.devicecontroller.ClusterInfoMapping.DelegatedIntegerAttributeCallback; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.Map; @@ -29,7 +28,6 @@ public class ClusterReadMapping { public Map> getReadAttributeMap() { - ClusterInfoMapping clusterInfoMapping = new ClusterInfoMapping(); Map> readAttributeMap = new HashMap<>(); Map readAccountLoginInteractionInfo = new LinkedHashMap<>(); Map readAccountLoginClusterRevisionCommandParams = @@ -40,7 +38,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.AccountLoginCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readAccountLoginClusterRevisionCommandParams); readAccountLoginInteractionInfo.put( "readClusterRevisionAttribute", readAccountLoginClusterRevisionAttributeInteractionInfo); @@ -55,7 +53,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.AdministratorCommissioningCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readAdministratorCommissioningClusterRevisionCommandParams); readAdministratorCommissioningInteractionInfo.put( "readClusterRevisionAttribute", @@ -71,7 +69,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ApplicationBasicCluster) cluster) .readVendorNameAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readApplicationBasicVendorNameCommandParams); readApplicationBasicInteractionInfo.put( "readVendorNameAttribute", readApplicationBasicVendorNameAttributeInteractionInfo); @@ -83,7 +81,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ApplicationBasicCluster) cluster) .readVendorIdAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readApplicationBasicVendorIdCommandParams); readApplicationBasicInteractionInfo.put( "readVendorIdAttribute", readApplicationBasicVendorIdAttributeInteractionInfo); @@ -96,7 +94,7 @@ public Map> getReadAttributeMap() { .readApplicationNameAttribute( (ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readApplicationBasicApplicationNameCommandParams); readApplicationBasicInteractionInfo.put( "readApplicationNameAttribute", @@ -109,7 +107,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ApplicationBasicCluster) cluster) .readProductIdAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readApplicationBasicProductIdCommandParams); readApplicationBasicInteractionInfo.put( "readProductIdAttribute", readApplicationBasicProductIdAttributeInteractionInfo); @@ -121,7 +119,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ApplicationBasicCluster) cluster) .readApplicationIdAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readApplicationBasicApplicationIdCommandParams); readApplicationBasicInteractionInfo.put( "readApplicationIdAttribute", readApplicationBasicApplicationIdAttributeInteractionInfo); @@ -133,7 +131,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ApplicationBasicCluster) cluster) .readCatalogVendorIdAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readApplicationBasicCatalogVendorIdCommandParams); readApplicationBasicInteractionInfo.put( "readCatalogVendorIdAttribute", @@ -146,7 +144,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ApplicationBasicCluster) cluster) .readApplicationStatusAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readApplicationBasicApplicationStatusCommandParams); readApplicationBasicInteractionInfo.put( "readApplicationStatusAttribute", @@ -159,7 +157,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ApplicationBasicCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readApplicationBasicClusterRevisionCommandParams); readApplicationBasicInteractionInfo.put( "readClusterRevisionAttribute", @@ -177,7 +175,7 @@ public Map> getReadAttributeMap() { .ApplicationLauncherListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedApplicationLauncherListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedApplicationLauncherListAttributeCallback(), readApplicationLauncherApplicationLauncherListCommandParams); readApplicationLauncherInteractionInfo.put( "readApplicationLauncherListAttribute", @@ -190,7 +188,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ApplicationLauncherCluster) cluster) .readCatalogVendorIdAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readApplicationLauncherCatalogVendorIdCommandParams); readApplicationLauncherInteractionInfo.put( "readCatalogVendorIdAttribute", @@ -203,7 +201,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ApplicationLauncherCluster) cluster) .readApplicationIdAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readApplicationLauncherApplicationIdCommandParams); readApplicationLauncherInteractionInfo.put( "readApplicationIdAttribute", readApplicationLauncherApplicationIdAttributeInteractionInfo); @@ -215,7 +213,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ApplicationLauncherCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readApplicationLauncherClusterRevisionCommandParams); readApplicationLauncherInteractionInfo.put( "readClusterRevisionAttribute", @@ -231,7 +229,7 @@ public Map> getReadAttributeMap() { .readAudioOutputListAttribute( (ChipClusters.AudioOutputCluster.AudioOutputListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedAudioOutputListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedAudioOutputListAttributeCallback(), readAudioOutputAudioOutputListCommandParams); readAudioOutputInteractionInfo.put( "readAudioOutputListAttribute", readAudioOutputAudioOutputListAttributeInteractionInfo); @@ -244,7 +242,7 @@ public Map> getReadAttributeMap() { .readCurrentAudioOutputAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readAudioOutputCurrentAudioOutputCommandParams); readAudioOutputInteractionInfo.put( "readCurrentAudioOutputAttribute", @@ -257,7 +255,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.AudioOutputCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readAudioOutputClusterRevisionCommandParams); readAudioOutputInteractionInfo.put( "readClusterRevisionAttribute", readAudioOutputClusterRevisionAttributeInteractionInfo); @@ -272,7 +270,7 @@ public Map> getReadAttributeMap() { .readBarrierMovingStateAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBarrierControlBarrierMovingStateCommandParams); readBarrierControlInteractionInfo.put( "readBarrierMovingStateAttribute", @@ -286,7 +284,7 @@ public Map> getReadAttributeMap() { .readBarrierSafetyStatusAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBarrierControlBarrierSafetyStatusCommandParams); readBarrierControlInteractionInfo.put( "readBarrierSafetyStatusAttribute", @@ -300,7 +298,7 @@ public Map> getReadAttributeMap() { .readBarrierCapabilitiesAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBarrierControlBarrierCapabilitiesCommandParams); readBarrierControlInteractionInfo.put( "readBarrierCapabilitiesAttribute", @@ -313,7 +311,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BarrierControlCluster) cluster) .readBarrierPositionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBarrierControlBarrierPositionCommandParams); readBarrierControlInteractionInfo.put( "readBarrierPositionAttribute", readBarrierControlBarrierPositionAttributeInteractionInfo); @@ -325,7 +323,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BarrierControlCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBarrierControlClusterRevisionCommandParams); readBarrierControlInteractionInfo.put( "readClusterRevisionAttribute", readBarrierControlClusterRevisionAttributeInteractionInfo); @@ -340,7 +338,7 @@ public Map> getReadAttributeMap() { .readInteractionModelVersionAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBasicInteractionModelVersionCommandParams); readBasicInteractionInfo.put( "readInteractionModelVersionAttribute", @@ -353,7 +351,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readVendorNameAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBasicVendorNameCommandParams); readBasicInteractionInfo.put( "readVendorNameAttribute", readBasicVendorNameAttributeInteractionInfo); @@ -365,7 +363,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readVendorIDAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBasicVendorIDCommandParams); readBasicInteractionInfo.put( "readVendorIDAttribute", readBasicVendorIDAttributeInteractionInfo); @@ -377,7 +375,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readProductNameAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBasicProductNameCommandParams); readBasicInteractionInfo.put( "readProductNameAttribute", readBasicProductNameAttributeInteractionInfo); @@ -389,7 +387,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readProductIDAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBasicProductIDCommandParams); readBasicInteractionInfo.put( "readProductIDAttribute", readBasicProductIDAttributeInteractionInfo); @@ -401,7 +399,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readUserLabelAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBasicUserLabelCommandParams); readBasicInteractionInfo.put( "readUserLabelAttribute", readBasicUserLabelAttributeInteractionInfo); @@ -413,7 +411,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readLocationAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBasicLocationCommandParams); readBasicInteractionInfo.put( "readLocationAttribute", readBasicLocationAttributeInteractionInfo); @@ -425,7 +423,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readHardwareVersionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBasicHardwareVersionCommandParams); readBasicInteractionInfo.put( "readHardwareVersionAttribute", readBasicHardwareVersionAttributeInteractionInfo); @@ -438,7 +436,7 @@ public Map> getReadAttributeMap() { .readHardwareVersionStringAttribute( (ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBasicHardwareVersionStringCommandParams); readBasicInteractionInfo.put( "readHardwareVersionStringAttribute", @@ -451,7 +449,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readSoftwareVersionAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readBasicSoftwareVersionCommandParams); readBasicInteractionInfo.put( "readSoftwareVersionAttribute", readBasicSoftwareVersionAttributeInteractionInfo); @@ -464,7 +462,7 @@ public Map> getReadAttributeMap() { .readSoftwareVersionStringAttribute( (ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBasicSoftwareVersionStringCommandParams); readBasicInteractionInfo.put( "readSoftwareVersionStringAttribute", @@ -478,7 +476,7 @@ public Map> getReadAttributeMap() { .readManufacturingDateAttribute( (ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBasicManufacturingDateCommandParams); readBasicInteractionInfo.put( "readManufacturingDateAttribute", readBasicManufacturingDateAttributeInteractionInfo); @@ -490,7 +488,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readPartNumberAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBasicPartNumberCommandParams); readBasicInteractionInfo.put( "readPartNumberAttribute", readBasicPartNumberAttributeInteractionInfo); @@ -502,7 +500,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readProductURLAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBasicProductURLCommandParams); readBasicInteractionInfo.put( "readProductURLAttribute", readBasicProductURLAttributeInteractionInfo); @@ -514,7 +512,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readProductLabelAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBasicProductLabelCommandParams); readBasicInteractionInfo.put( "readProductLabelAttribute", readBasicProductLabelAttributeInteractionInfo); @@ -526,7 +524,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readSerialNumberAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBasicSerialNumberCommandParams); readBasicInteractionInfo.put( "readSerialNumberAttribute", readBasicSerialNumberAttributeInteractionInfo); @@ -539,7 +537,7 @@ public Map> getReadAttributeMap() { .readLocalConfigDisabledAttribute( (ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readBasicLocalConfigDisabledCommandParams); readBasicInteractionInfo.put( "readLocalConfigDisabledAttribute", readBasicLocalConfigDisabledAttributeInteractionInfo); @@ -551,7 +549,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readReachableAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readBasicReachableCommandParams); readBasicInteractionInfo.put( "readReachableAttribute", readBasicReachableAttributeInteractionInfo); @@ -563,7 +561,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BasicCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBasicClusterRevisionCommandParams); readBasicInteractionInfo.put( "readClusterRevisionAttribute", readBasicClusterRevisionAttributeInteractionInfo); @@ -577,7 +575,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BinaryInputBasicCluster) cluster) .readOutOfServiceAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readBinaryInputBasicOutOfServiceCommandParams); readBinaryInputBasicInteractionInfo.put( "readOutOfServiceAttribute", readBinaryInputBasicOutOfServiceAttributeInteractionInfo); @@ -589,7 +587,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BinaryInputBasicCluster) cluster) .readPresentValueAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readBinaryInputBasicPresentValueCommandParams); readBinaryInputBasicInteractionInfo.put( "readPresentValueAttribute", readBinaryInputBasicPresentValueAttributeInteractionInfo); @@ -601,7 +599,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BinaryInputBasicCluster) cluster) .readStatusFlagsAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBinaryInputBasicStatusFlagsCommandParams); readBinaryInputBasicInteractionInfo.put( "readStatusFlagsAttribute", readBinaryInputBasicStatusFlagsAttributeInteractionInfo); @@ -613,7 +611,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BinaryInputBasicCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBinaryInputBasicClusterRevisionCommandParams); readBinaryInputBasicInteractionInfo.put( "readClusterRevisionAttribute", @@ -628,7 +626,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BindingCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBindingClusterRevisionCommandParams); readBindingInteractionInfo.put( "readClusterRevisionAttribute", readBindingClusterRevisionAttributeInteractionInfo); @@ -642,7 +640,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BooleanStateCluster) cluster) .readStateValueAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readBooleanStateStateValueCommandParams); readBooleanStateInteractionInfo.put( "readStateValueAttribute", readBooleanStateStateValueAttributeInteractionInfo); @@ -654,7 +652,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BooleanStateCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBooleanStateClusterRevisionCommandParams); readBooleanStateInteractionInfo.put( "readClusterRevisionAttribute", readBooleanStateClusterRevisionAttributeInteractionInfo); @@ -669,7 +667,7 @@ public Map> getReadAttributeMap() { .readActionListAttribute( (ChipClusters.BridgedActionsCluster.ActionListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedActionListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedActionListAttributeCallback(), readBridgedActionsActionListCommandParams); readBridgedActionsInteractionInfo.put( "readActionListAttribute", readBridgedActionsActionListAttributeInteractionInfo); @@ -682,7 +680,7 @@ public Map> getReadAttributeMap() { .readEndpointListAttribute( (ChipClusters.BridgedActionsCluster.EndpointListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedEndpointListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedEndpointListAttributeCallback(), readBridgedActionsEndpointListCommandParams); readBridgedActionsInteractionInfo.put( "readEndpointListAttribute", readBridgedActionsEndpointListAttributeInteractionInfo); @@ -694,7 +692,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedActionsCluster) cluster) .readSetupUrlAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBridgedActionsSetupUrlCommandParams); readBridgedActionsInteractionInfo.put( "readSetupUrlAttribute", readBridgedActionsSetupUrlAttributeInteractionInfo); @@ -706,7 +704,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedActionsCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBridgedActionsClusterRevisionCommandParams); readBridgedActionsInteractionInfo.put( "readClusterRevisionAttribute", readBridgedActionsClusterRevisionAttributeInteractionInfo); @@ -720,7 +718,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readVendorNameAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBridgedDeviceBasicVendorNameCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readVendorNameAttribute", readBridgedDeviceBasicVendorNameAttributeInteractionInfo); @@ -732,7 +730,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readVendorIDAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBridgedDeviceBasicVendorIDCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readVendorIDAttribute", readBridgedDeviceBasicVendorIDAttributeInteractionInfo); @@ -744,7 +742,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readProductNameAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBridgedDeviceBasicProductNameCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readProductNameAttribute", readBridgedDeviceBasicProductNameAttributeInteractionInfo); @@ -756,7 +754,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readUserLabelAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBridgedDeviceBasicUserLabelCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readUserLabelAttribute", readBridgedDeviceBasicUserLabelAttributeInteractionInfo); @@ -768,7 +766,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readHardwareVersionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBridgedDeviceBasicHardwareVersionCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readHardwareVersionAttribute", @@ -782,7 +780,7 @@ public Map> getReadAttributeMap() { .readHardwareVersionStringAttribute( (ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBridgedDeviceBasicHardwareVersionStringCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readHardwareVersionStringAttribute", @@ -795,7 +793,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readSoftwareVersionAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readBridgedDeviceBasicSoftwareVersionCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readSoftwareVersionAttribute", @@ -809,7 +807,7 @@ public Map> getReadAttributeMap() { .readSoftwareVersionStringAttribute( (ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBridgedDeviceBasicSoftwareVersionStringCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readSoftwareVersionStringAttribute", @@ -823,7 +821,7 @@ public Map> getReadAttributeMap() { .readManufacturingDateAttribute( (ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBridgedDeviceBasicManufacturingDateCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readManufacturingDateAttribute", @@ -836,7 +834,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readPartNumberAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBridgedDeviceBasicPartNumberCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readPartNumberAttribute", readBridgedDeviceBasicPartNumberAttributeInteractionInfo); @@ -848,7 +846,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readProductURLAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBridgedDeviceBasicProductURLCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readProductURLAttribute", readBridgedDeviceBasicProductURLAttributeInteractionInfo); @@ -860,7 +858,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readProductLabelAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBridgedDeviceBasicProductLabelCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readProductLabelAttribute", readBridgedDeviceBasicProductLabelAttributeInteractionInfo); @@ -872,7 +870,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readSerialNumberAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readBridgedDeviceBasicSerialNumberCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readSerialNumberAttribute", readBridgedDeviceBasicSerialNumberAttributeInteractionInfo); @@ -884,7 +882,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readReachableAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readBridgedDeviceBasicReachableCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readReachableAttribute", readBridgedDeviceBasicReachableAttributeInteractionInfo); @@ -896,7 +894,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.BridgedDeviceBasicCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readBridgedDeviceBasicClusterRevisionCommandParams); readBridgedDeviceBasicInteractionInfo.put( "readClusterRevisionAttribute", @@ -911,7 +909,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readCurrentHueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlCurrentHueCommandParams); readColorControlInteractionInfo.put( "readCurrentHueAttribute", readColorControlCurrentHueAttributeInteractionInfo); @@ -923,7 +921,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readCurrentSaturationAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlCurrentSaturationCommandParams); readColorControlInteractionInfo.put( "readCurrentSaturationAttribute", @@ -936,7 +934,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readRemainingTimeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlRemainingTimeCommandParams); readColorControlInteractionInfo.put( "readRemainingTimeAttribute", readColorControlRemainingTimeAttributeInteractionInfo); @@ -948,7 +946,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readCurrentXAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlCurrentXCommandParams); readColorControlInteractionInfo.put( "readCurrentXAttribute", readColorControlCurrentXAttributeInteractionInfo); @@ -960,7 +958,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readCurrentYAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlCurrentYCommandParams); readColorControlInteractionInfo.put( "readCurrentYAttribute", readColorControlCurrentYAttributeInteractionInfo); @@ -972,7 +970,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readDriftCompensationAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlDriftCompensationCommandParams); readColorControlInteractionInfo.put( "readDriftCompensationAttribute", @@ -986,7 +984,7 @@ public Map> getReadAttributeMap() { .readCompensationTextAttribute( (ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readColorControlCompensationTextCommandParams); readColorControlInteractionInfo.put( "readCompensationTextAttribute", readColorControlCompensationTextAttributeInteractionInfo); @@ -998,7 +996,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readColorTemperatureAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorTemperatureCommandParams); readColorControlInteractionInfo.put( "readColorTemperatureAttribute", readColorControlColorTemperatureAttributeInteractionInfo); @@ -1010,7 +1008,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readColorModeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorModeCommandParams); readColorControlInteractionInfo.put( "readColorModeAttribute", readColorControlColorModeAttributeInteractionInfo); @@ -1023,7 +1021,7 @@ public Map> getReadAttributeMap() { .readColorControlOptionsAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorControlOptionsCommandParams); readColorControlInteractionInfo.put( "readColorControlOptionsAttribute", @@ -1036,7 +1034,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readNumberOfPrimariesAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlNumberOfPrimariesCommandParams); readColorControlInteractionInfo.put( "readNumberOfPrimariesAttribute", @@ -1049,7 +1047,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary1XAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary1XCommandParams); readColorControlInteractionInfo.put( "readPrimary1XAttribute", readColorControlPrimary1XAttributeInteractionInfo); @@ -1061,7 +1059,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary1YAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary1YCommandParams); readColorControlInteractionInfo.put( "readPrimary1YAttribute", readColorControlPrimary1YAttributeInteractionInfo); @@ -1073,7 +1071,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary1IntensityAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary1IntensityCommandParams); readColorControlInteractionInfo.put( "readPrimary1IntensityAttribute", @@ -1086,7 +1084,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary2XAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary2XCommandParams); readColorControlInteractionInfo.put( "readPrimary2XAttribute", readColorControlPrimary2XAttributeInteractionInfo); @@ -1098,7 +1096,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary2YAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary2YCommandParams); readColorControlInteractionInfo.put( "readPrimary2YAttribute", readColorControlPrimary2YAttributeInteractionInfo); @@ -1110,7 +1108,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary2IntensityAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary2IntensityCommandParams); readColorControlInteractionInfo.put( "readPrimary2IntensityAttribute", @@ -1123,7 +1121,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary3XAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary3XCommandParams); readColorControlInteractionInfo.put( "readPrimary3XAttribute", readColorControlPrimary3XAttributeInteractionInfo); @@ -1135,7 +1133,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary3YAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary3YCommandParams); readColorControlInteractionInfo.put( "readPrimary3YAttribute", readColorControlPrimary3YAttributeInteractionInfo); @@ -1147,7 +1145,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary3IntensityAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary3IntensityCommandParams); readColorControlInteractionInfo.put( "readPrimary3IntensityAttribute", @@ -1160,7 +1158,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary4XAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary4XCommandParams); readColorControlInteractionInfo.put( "readPrimary4XAttribute", readColorControlPrimary4XAttributeInteractionInfo); @@ -1172,7 +1170,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary4YAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary4YCommandParams); readColorControlInteractionInfo.put( "readPrimary4YAttribute", readColorControlPrimary4YAttributeInteractionInfo); @@ -1184,7 +1182,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary4IntensityAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary4IntensityCommandParams); readColorControlInteractionInfo.put( "readPrimary4IntensityAttribute", @@ -1197,7 +1195,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary5XAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary5XCommandParams); readColorControlInteractionInfo.put( "readPrimary5XAttribute", readColorControlPrimary5XAttributeInteractionInfo); @@ -1209,7 +1207,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary5YAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary5YCommandParams); readColorControlInteractionInfo.put( "readPrimary5YAttribute", readColorControlPrimary5YAttributeInteractionInfo); @@ -1221,7 +1219,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary5IntensityAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary5IntensityCommandParams); readColorControlInteractionInfo.put( "readPrimary5IntensityAttribute", @@ -1234,7 +1232,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary6XAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary6XCommandParams); readColorControlInteractionInfo.put( "readPrimary6XAttribute", readColorControlPrimary6XAttributeInteractionInfo); @@ -1246,7 +1244,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary6YAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary6YCommandParams); readColorControlInteractionInfo.put( "readPrimary6YAttribute", readColorControlPrimary6YAttributeInteractionInfo); @@ -1258,7 +1256,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readPrimary6IntensityAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlPrimary6IntensityCommandParams); readColorControlInteractionInfo.put( "readPrimary6IntensityAttribute", @@ -1271,7 +1269,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readWhitePointXAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlWhitePointXCommandParams); readColorControlInteractionInfo.put( "readWhitePointXAttribute", readColorControlWhitePointXAttributeInteractionInfo); @@ -1283,7 +1281,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readWhitePointYAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlWhitePointYCommandParams); readColorControlInteractionInfo.put( "readWhitePointYAttribute", readColorControlWhitePointYAttributeInteractionInfo); @@ -1295,7 +1293,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readColorPointRXAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorPointRXCommandParams); readColorControlInteractionInfo.put( "readColorPointRXAttribute", readColorControlColorPointRXAttributeInteractionInfo); @@ -1307,7 +1305,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readColorPointRYAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorPointRYCommandParams); readColorControlInteractionInfo.put( "readColorPointRYAttribute", readColorControlColorPointRYAttributeInteractionInfo); @@ -1320,7 +1318,7 @@ public Map> getReadAttributeMap() { .readColorPointRIntensityAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorPointRIntensityCommandParams); readColorControlInteractionInfo.put( "readColorPointRIntensityAttribute", @@ -1333,7 +1331,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readColorPointGXAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorPointGXCommandParams); readColorControlInteractionInfo.put( "readColorPointGXAttribute", readColorControlColorPointGXAttributeInteractionInfo); @@ -1345,7 +1343,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readColorPointGYAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorPointGYCommandParams); readColorControlInteractionInfo.put( "readColorPointGYAttribute", readColorControlColorPointGYAttributeInteractionInfo); @@ -1358,7 +1356,7 @@ public Map> getReadAttributeMap() { .readColorPointGIntensityAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorPointGIntensityCommandParams); readColorControlInteractionInfo.put( "readColorPointGIntensityAttribute", @@ -1371,7 +1369,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readColorPointBXAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorPointBXCommandParams); readColorControlInteractionInfo.put( "readColorPointBXAttribute", readColorControlColorPointBXAttributeInteractionInfo); @@ -1383,7 +1381,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readColorPointBYAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorPointBYCommandParams); readColorControlInteractionInfo.put( "readColorPointBYAttribute", readColorControlColorPointBYAttributeInteractionInfo); @@ -1396,7 +1394,7 @@ public Map> getReadAttributeMap() { .readColorPointBIntensityAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorPointBIntensityCommandParams); readColorControlInteractionInfo.put( "readColorPointBIntensityAttribute", @@ -1410,7 +1408,7 @@ public Map> getReadAttributeMap() { .readEnhancedCurrentHueAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlEnhancedCurrentHueCommandParams); readColorControlInteractionInfo.put( "readEnhancedCurrentHueAttribute", @@ -1423,7 +1421,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readEnhancedColorModeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlEnhancedColorModeCommandParams); readColorControlInteractionInfo.put( "readEnhancedColorModeAttribute", @@ -1436,7 +1434,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readColorLoopActiveAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorLoopActiveCommandParams); readColorControlInteractionInfo.put( "readColorLoopActiveAttribute", readColorControlColorLoopActiveAttributeInteractionInfo); @@ -1449,7 +1447,7 @@ public Map> getReadAttributeMap() { .readColorLoopDirectionAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorLoopDirectionCommandParams); readColorControlInteractionInfo.put( "readColorLoopDirectionAttribute", @@ -1462,7 +1460,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readColorLoopTimeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorLoopTimeCommandParams); readColorControlInteractionInfo.put( "readColorLoopTimeAttribute", readColorControlColorLoopTimeAttributeInteractionInfo); @@ -1475,7 +1473,7 @@ public Map> getReadAttributeMap() { .readColorLoopStartEnhancedHueAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorLoopStartEnhancedHueCommandParams); readColorControlInteractionInfo.put( "readColorLoopStartEnhancedHueAttribute", @@ -1489,7 +1487,7 @@ public Map> getReadAttributeMap() { .readColorLoopStoredEnhancedHueAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorLoopStoredEnhancedHueCommandParams); readColorControlInteractionInfo.put( "readColorLoopStoredEnhancedHueAttribute", @@ -1502,7 +1500,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readColorCapabilitiesAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorCapabilitiesCommandParams); readColorControlInteractionInfo.put( "readColorCapabilitiesAttribute", @@ -1516,7 +1514,7 @@ public Map> getReadAttributeMap() { .readColorTempPhysicalMinAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorTempPhysicalMinCommandParams); readColorControlInteractionInfo.put( "readColorTempPhysicalMinAttribute", @@ -1530,7 +1528,7 @@ public Map> getReadAttributeMap() { .readColorTempPhysicalMaxAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlColorTempPhysicalMaxCommandParams); readColorControlInteractionInfo.put( "readColorTempPhysicalMaxAttribute", @@ -1544,7 +1542,7 @@ public Map> getReadAttributeMap() { .readCoupleColorTempToLevelMinMiredsAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlCoupleColorTempToLevelMinMiredsCommandParams); readColorControlInteractionInfo.put( "readCoupleColorTempToLevelMinMiredsAttribute", @@ -1558,7 +1556,7 @@ public Map> getReadAttributeMap() { .readStartUpColorTemperatureMiredsAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlStartUpColorTemperatureMiredsCommandParams); readColorControlInteractionInfo.put( "readStartUpColorTemperatureMiredsAttribute", @@ -1571,7 +1569,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ColorControlCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readColorControlClusterRevisionCommandParams); readColorControlInteractionInfo.put( "readClusterRevisionAttribute", readColorControlClusterRevisionAttributeInteractionInfo); @@ -1587,7 +1585,7 @@ public Map> getReadAttributeMap() { (ChipClusters.ContentLauncherCluster.AcceptsHeaderListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedAcceptsHeaderListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedAcceptsHeaderListAttributeCallback(), readContentLauncherAcceptsHeaderListCommandParams); readContentLauncherInteractionInfo.put( "readAcceptsHeaderListAttribute", @@ -1602,7 +1600,7 @@ public Map> getReadAttributeMap() { (ChipClusters.ContentLauncherCluster.SupportedStreamingTypesAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedSupportedStreamingTypesAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedSupportedStreamingTypesAttributeCallback(), readContentLauncherSupportedStreamingTypesCommandParams); readContentLauncherInteractionInfo.put( "readSupportedStreamingTypesAttribute", @@ -1615,7 +1613,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ContentLauncherCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readContentLauncherClusterRevisionCommandParams); readContentLauncherInteractionInfo.put( "readClusterRevisionAttribute", readContentLauncherClusterRevisionAttributeInteractionInfo); @@ -1630,7 +1628,7 @@ public Map> getReadAttributeMap() { .readDeviceListAttribute( (ChipClusters.DescriptorCluster.DeviceListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedDeviceListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedDeviceListAttributeCallback(), readDescriptorDeviceListCommandParams); readDescriptorInteractionInfo.put( "readDeviceListAttribute", readDescriptorDeviceListAttributeInteractionInfo); @@ -1643,7 +1641,7 @@ public Map> getReadAttributeMap() { .readServerListAttribute( (ChipClusters.DescriptorCluster.ServerListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedServerListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedServerListAttributeCallback(), readDescriptorServerListCommandParams); readDescriptorInteractionInfo.put( "readServerListAttribute", readDescriptorServerListAttributeInteractionInfo); @@ -1656,7 +1654,7 @@ public Map> getReadAttributeMap() { .readClientListAttribute( (ChipClusters.DescriptorCluster.ClientListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedClientListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedClientListAttributeCallback(), readDescriptorClientListCommandParams); readDescriptorInteractionInfo.put( "readClientListAttribute", readDescriptorClientListAttributeInteractionInfo); @@ -1669,7 +1667,7 @@ public Map> getReadAttributeMap() { .readPartsListAttribute( (ChipClusters.DescriptorCluster.PartsListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedPartsListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedPartsListAttributeCallback(), readDescriptorPartsListCommandParams); readDescriptorInteractionInfo.put( "readPartsListAttribute", readDescriptorPartsListAttributeInteractionInfo); @@ -1681,7 +1679,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.DescriptorCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readDescriptorClusterRevisionCommandParams); readDescriptorInteractionInfo.put( "readClusterRevisionAttribute", readDescriptorClusterRevisionAttributeInteractionInfo); @@ -1697,7 +1695,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.DoorLockCluster) cluster) .readLockStateAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readDoorLockLockStateCommandParams); readDoorLockInteractionInfo.put( "readLockStateAttribute", readDoorLockLockStateAttributeInteractionInfo); @@ -1709,7 +1707,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.DoorLockCluster) cluster) .readLockTypeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readDoorLockLockTypeCommandParams); readDoorLockInteractionInfo.put( "readLockTypeAttribute", readDoorLockLockTypeAttributeInteractionInfo); @@ -1721,7 +1719,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.DoorLockCluster) cluster) .readActuatorEnabledAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readDoorLockActuatorEnabledCommandParams); readDoorLockInteractionInfo.put( "readActuatorEnabledAttribute", readDoorLockActuatorEnabledAttributeInteractionInfo); @@ -1733,7 +1731,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.DoorLockCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readDoorLockClusterRevisionCommandParams); readDoorLockInteractionInfo.put( "readClusterRevisionAttribute", readDoorLockClusterRevisionAttributeInteractionInfo); @@ -1747,7 +1745,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readMeasurementTypeAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readElectricalMeasurementMeasurementTypeCommandParams); readElectricalMeasurementInteractionInfo.put( "readMeasurementTypeAttribute", @@ -1760,7 +1758,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readTotalActivePowerAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readElectricalMeasurementTotalActivePowerCommandParams); readElectricalMeasurementInteractionInfo.put( "readTotalActivePowerAttribute", @@ -1773,7 +1771,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readRmsVoltageAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readElectricalMeasurementRmsVoltageCommandParams); readElectricalMeasurementInteractionInfo.put( "readRmsVoltageAttribute", readElectricalMeasurementRmsVoltageAttributeInteractionInfo); @@ -1785,7 +1783,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readRmsVoltageMinAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readElectricalMeasurementRmsVoltageMinCommandParams); readElectricalMeasurementInteractionInfo.put( "readRmsVoltageMinAttribute", @@ -1798,7 +1796,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readRmsVoltageMaxAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readElectricalMeasurementRmsVoltageMaxCommandParams); readElectricalMeasurementInteractionInfo.put( "readRmsVoltageMaxAttribute", @@ -1811,7 +1809,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readRmsCurrentAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readElectricalMeasurementRmsCurrentCommandParams); readElectricalMeasurementInteractionInfo.put( "readRmsCurrentAttribute", readElectricalMeasurementRmsCurrentAttributeInteractionInfo); @@ -1823,7 +1821,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readRmsCurrentMinAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readElectricalMeasurementRmsCurrentMinCommandParams); readElectricalMeasurementInteractionInfo.put( "readRmsCurrentMinAttribute", @@ -1836,7 +1834,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readRmsCurrentMaxAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readElectricalMeasurementRmsCurrentMaxCommandParams); readElectricalMeasurementInteractionInfo.put( "readRmsCurrentMaxAttribute", @@ -1849,7 +1847,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readActivePowerAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readElectricalMeasurementActivePowerCommandParams); readElectricalMeasurementInteractionInfo.put( "readActivePowerAttribute", readElectricalMeasurementActivePowerAttributeInteractionInfo); @@ -1861,7 +1859,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readActivePowerMinAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readElectricalMeasurementActivePowerMinCommandParams); readElectricalMeasurementInteractionInfo.put( "readActivePowerMinAttribute", @@ -1874,7 +1872,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readActivePowerMaxAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readElectricalMeasurementActivePowerMaxCommandParams); readElectricalMeasurementInteractionInfo.put( "readActivePowerMaxAttribute", @@ -1887,7 +1885,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ElectricalMeasurementCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readElectricalMeasurementClusterRevisionCommandParams); readElectricalMeasurementInteractionInfo.put( "readClusterRevisionAttribute", @@ -1903,7 +1901,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.EthernetNetworkDiagnosticsCluster) cluster) .readPHYRateAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readEthernetNetworkDiagnosticsPHYRateCommandParams); readEthernetNetworkDiagnosticsInteractionInfo.put( "readPHYRateAttribute", readEthernetNetworkDiagnosticsPHYRateAttributeInteractionInfo); @@ -1915,7 +1913,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.EthernetNetworkDiagnosticsCluster) cluster) .readFullDuplexAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readEthernetNetworkDiagnosticsFullDuplexCommandParams); readEthernetNetworkDiagnosticsInteractionInfo.put( "readFullDuplexAttribute", @@ -1928,7 +1926,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.EthernetNetworkDiagnosticsCluster) cluster) .readPacketRxCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readEthernetNetworkDiagnosticsPacketRxCountCommandParams); readEthernetNetworkDiagnosticsInteractionInfo.put( "readPacketRxCountAttribute", @@ -1941,7 +1939,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.EthernetNetworkDiagnosticsCluster) cluster) .readPacketTxCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readEthernetNetworkDiagnosticsPacketTxCountCommandParams); readEthernetNetworkDiagnosticsInteractionInfo.put( "readPacketTxCountAttribute", @@ -1954,7 +1952,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.EthernetNetworkDiagnosticsCluster) cluster) .readTxErrCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readEthernetNetworkDiagnosticsTxErrCountCommandParams); readEthernetNetworkDiagnosticsInteractionInfo.put( "readTxErrCountAttribute", @@ -1967,7 +1965,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.EthernetNetworkDiagnosticsCluster) cluster) .readCollisionCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readEthernetNetworkDiagnosticsCollisionCountCommandParams); readEthernetNetworkDiagnosticsInteractionInfo.put( "readCollisionCountAttribute", @@ -1980,7 +1978,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.EthernetNetworkDiagnosticsCluster) cluster) .readOverrunCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readEthernetNetworkDiagnosticsOverrunCountCommandParams); readEthernetNetworkDiagnosticsInteractionInfo.put( "readOverrunCountAttribute", @@ -1993,7 +1991,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.EthernetNetworkDiagnosticsCluster) cluster) .readCarrierDetectAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readEthernetNetworkDiagnosticsCarrierDetectCommandParams); readEthernetNetworkDiagnosticsInteractionInfo.put( "readCarrierDetectAttribute", @@ -2006,7 +2004,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.EthernetNetworkDiagnosticsCluster) cluster) .readTimeSinceResetAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readEthernetNetworkDiagnosticsTimeSinceResetCommandParams); readEthernetNetworkDiagnosticsInteractionInfo.put( "readTimeSinceResetAttribute", @@ -2019,7 +2017,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.EthernetNetworkDiagnosticsCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readEthernetNetworkDiagnosticsClusterRevisionCommandParams); readEthernetNetworkDiagnosticsInteractionInfo.put( "readClusterRevisionAttribute", @@ -2036,7 +2034,7 @@ public Map> getReadAttributeMap() { .readLabelListAttribute( (ChipClusters.FixedLabelCluster.LabelListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLabelListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLabelListAttributeCallback(), readFixedLabelLabelListCommandParams); readFixedLabelInteractionInfo.put( "readLabelListAttribute", readFixedLabelLabelListAttributeInteractionInfo); @@ -2048,7 +2046,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.FixedLabelCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readFixedLabelClusterRevisionCommandParams); readFixedLabelInteractionInfo.put( "readClusterRevisionAttribute", readFixedLabelClusterRevisionAttributeInteractionInfo); @@ -2062,7 +2060,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.FlowMeasurementCluster) cluster) .readMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readFlowMeasurementMeasuredValueCommandParams); readFlowMeasurementInteractionInfo.put( "readMeasuredValueAttribute", readFlowMeasurementMeasuredValueAttributeInteractionInfo); @@ -2074,7 +2072,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.FlowMeasurementCluster) cluster) .readMinMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readFlowMeasurementMinMeasuredValueCommandParams); readFlowMeasurementInteractionInfo.put( "readMinMeasuredValueAttribute", @@ -2087,7 +2085,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.FlowMeasurementCluster) cluster) .readMaxMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readFlowMeasurementMaxMeasuredValueCommandParams); readFlowMeasurementInteractionInfo.put( "readMaxMeasuredValueAttribute", @@ -2100,7 +2098,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.FlowMeasurementCluster) cluster) .readToleranceAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readFlowMeasurementToleranceCommandParams); readFlowMeasurementInteractionInfo.put( "readToleranceAttribute", readFlowMeasurementToleranceAttributeInteractionInfo); @@ -2112,7 +2110,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.FlowMeasurementCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readFlowMeasurementClusterRevisionCommandParams); readFlowMeasurementInteractionInfo.put( "readClusterRevisionAttribute", readFlowMeasurementClusterRevisionAttributeInteractionInfo); @@ -2126,7 +2124,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.GeneralCommissioningCluster) cluster) .readBreadcrumbAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readGeneralCommissioningBreadcrumbCommandParams); readGeneralCommissioningInteractionInfo.put( "readBreadcrumbAttribute", readGeneralCommissioningBreadcrumbAttributeInteractionInfo); @@ -2142,7 +2140,7 @@ public Map> getReadAttributeMap() { .BasicCommissioningInfoListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBasicCommissioningInfoListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBasicCommissioningInfoListAttributeCallback(), readGeneralCommissioningBasicCommissioningInfoListCommandParams); readGeneralCommissioningInteractionInfo.put( "readBasicCommissioningInfoListAttribute", @@ -2155,7 +2153,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.GeneralCommissioningCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readGeneralCommissioningClusterRevisionCommandParams); readGeneralCommissioningInteractionInfo.put( "readClusterRevisionAttribute", @@ -2172,7 +2170,7 @@ public Map> getReadAttributeMap() { (ChipClusters.GeneralDiagnosticsCluster.NetworkInterfacesAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedNetworkInterfacesAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedNetworkInterfacesAttributeCallback(), readGeneralDiagnosticsNetworkInterfacesCommandParams); readGeneralDiagnosticsInteractionInfo.put( "readNetworkInterfacesAttribute", @@ -2185,7 +2183,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.GeneralDiagnosticsCluster) cluster) .readRebootCountAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readGeneralDiagnosticsRebootCountCommandParams); readGeneralDiagnosticsInteractionInfo.put( "readRebootCountAttribute", readGeneralDiagnosticsRebootCountAttributeInteractionInfo); @@ -2197,7 +2195,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.GeneralDiagnosticsCluster) cluster) .readUpTimeAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readGeneralDiagnosticsUpTimeCommandParams); readGeneralDiagnosticsInteractionInfo.put( "readUpTimeAttribute", readGeneralDiagnosticsUpTimeAttributeInteractionInfo); @@ -2210,7 +2208,7 @@ public Map> getReadAttributeMap() { .readTotalOperationalHoursAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readGeneralDiagnosticsTotalOperationalHoursCommandParams); readGeneralDiagnosticsInteractionInfo.put( "readTotalOperationalHoursAttribute", @@ -2223,7 +2221,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.GeneralDiagnosticsCluster) cluster) .readBootReasonsAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readGeneralDiagnosticsBootReasonsCommandParams); readGeneralDiagnosticsInteractionInfo.put( "readBootReasonsAttribute", readGeneralDiagnosticsBootReasonsAttributeInteractionInfo); @@ -2235,7 +2233,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.GeneralDiagnosticsCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readGeneralDiagnosticsClusterRevisionCommandParams); readGeneralDiagnosticsInteractionInfo.put( "readClusterRevisionAttribute", @@ -2251,7 +2249,7 @@ public Map> getReadAttributeMap() { .readGroupsAttribute( (ChipClusters.GroupKeyManagementCluster.GroupsAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedGroupsAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedGroupsAttributeCallback(), readGroupKeyManagementGroupsCommandParams); readGroupKeyManagementInteractionInfo.put( "readGroupsAttribute", readGroupKeyManagementGroupsAttributeInteractionInfo); @@ -2264,7 +2262,7 @@ public Map> getReadAttributeMap() { .readGroupKeysAttribute( (ChipClusters.GroupKeyManagementCluster.GroupKeysAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedGroupKeysAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedGroupKeysAttributeCallback(), readGroupKeyManagementGroupKeysCommandParams); readGroupKeyManagementInteractionInfo.put( "readGroupKeysAttribute", readGroupKeyManagementGroupKeysAttributeInteractionInfo); @@ -2276,7 +2274,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.GroupKeyManagementCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readGroupKeyManagementClusterRevisionCommandParams); readGroupKeyManagementInteractionInfo.put( "readClusterRevisionAttribute", @@ -2291,7 +2289,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.GroupsCluster) cluster) .readNameSupportAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readGroupsNameSupportCommandParams); readGroupsInteractionInfo.put( "readNameSupportAttribute", readGroupsNameSupportAttributeInteractionInfo); @@ -2303,7 +2301,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.GroupsCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readGroupsClusterRevisionCommandParams); readGroupsInteractionInfo.put( "readClusterRevisionAttribute", readGroupsClusterRevisionAttributeInteractionInfo); @@ -2317,7 +2315,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.IdentifyCluster) cluster) .readIdentifyTimeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readIdentifyIdentifyTimeCommandParams); readIdentifyInteractionInfo.put( "readIdentifyTimeAttribute", readIdentifyIdentifyTimeAttributeInteractionInfo); @@ -2329,7 +2327,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.IdentifyCluster) cluster) .readIdentifyTypeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readIdentifyIdentifyTypeCommandParams); readIdentifyInteractionInfo.put( "readIdentifyTypeAttribute", readIdentifyIdentifyTypeAttributeInteractionInfo); @@ -2341,7 +2339,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.IdentifyCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readIdentifyClusterRevisionCommandParams); readIdentifyInteractionInfo.put( "readClusterRevisionAttribute", readIdentifyClusterRevisionAttributeInteractionInfo); @@ -2355,7 +2353,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.IlluminanceMeasurementCluster) cluster) .readMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readIlluminanceMeasurementMeasuredValueCommandParams); readIlluminanceMeasurementInteractionInfo.put( "readMeasuredValueAttribute", @@ -2368,7 +2366,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.IlluminanceMeasurementCluster) cluster) .readMinMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readIlluminanceMeasurementMinMeasuredValueCommandParams); readIlluminanceMeasurementInteractionInfo.put( "readMinMeasuredValueAttribute", @@ -2381,7 +2379,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.IlluminanceMeasurementCluster) cluster) .readMaxMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readIlluminanceMeasurementMaxMeasuredValueCommandParams); readIlluminanceMeasurementInteractionInfo.put( "readMaxMeasuredValueAttribute", @@ -2394,7 +2392,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.IlluminanceMeasurementCluster) cluster) .readToleranceAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readIlluminanceMeasurementToleranceCommandParams); readIlluminanceMeasurementInteractionInfo.put( "readToleranceAttribute", readIlluminanceMeasurementToleranceAttributeInteractionInfo); @@ -2406,7 +2404,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.IlluminanceMeasurementCluster) cluster) .readLightSensorTypeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readIlluminanceMeasurementLightSensorTypeCommandParams); readIlluminanceMeasurementInteractionInfo.put( "readLightSensorTypeAttribute", @@ -2419,7 +2417,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.IlluminanceMeasurementCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readIlluminanceMeasurementClusterRevisionCommandParams); readIlluminanceMeasurementInteractionInfo.put( "readClusterRevisionAttribute", @@ -2434,7 +2432,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.KeypadInputCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readKeypadInputClusterRevisionCommandParams); readKeypadInputInteractionInfo.put( "readClusterRevisionAttribute", readKeypadInputClusterRevisionAttributeInteractionInfo); @@ -2448,7 +2446,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readCurrentLevelAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlCurrentLevelCommandParams); readLevelControlInteractionInfo.put( "readCurrentLevelAttribute", readLevelControlCurrentLevelAttributeInteractionInfo); @@ -2460,7 +2458,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readRemainingTimeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlRemainingTimeCommandParams); readLevelControlInteractionInfo.put( "readRemainingTimeAttribute", readLevelControlRemainingTimeAttributeInteractionInfo); @@ -2472,7 +2470,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readMinLevelAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlMinLevelCommandParams); readLevelControlInteractionInfo.put( "readMinLevelAttribute", readLevelControlMinLevelAttributeInteractionInfo); @@ -2484,7 +2482,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readMaxLevelAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlMaxLevelCommandParams); readLevelControlInteractionInfo.put( "readMaxLevelAttribute", readLevelControlMaxLevelAttributeInteractionInfo); @@ -2496,7 +2494,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readCurrentFrequencyAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlCurrentFrequencyCommandParams); readLevelControlInteractionInfo.put( "readCurrentFrequencyAttribute", readLevelControlCurrentFrequencyAttributeInteractionInfo); @@ -2508,7 +2506,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readMinFrequencyAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlMinFrequencyCommandParams); readLevelControlInteractionInfo.put( "readMinFrequencyAttribute", readLevelControlMinFrequencyAttributeInteractionInfo); @@ -2520,7 +2518,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readMaxFrequencyAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlMaxFrequencyCommandParams); readLevelControlInteractionInfo.put( "readMaxFrequencyAttribute", readLevelControlMaxFrequencyAttributeInteractionInfo); @@ -2532,7 +2530,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readOptionsAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlOptionsCommandParams); readLevelControlInteractionInfo.put( "readOptionsAttribute", readLevelControlOptionsAttributeInteractionInfo); @@ -2545,7 +2543,7 @@ public Map> getReadAttributeMap() { .readOnOffTransitionTimeAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlOnOffTransitionTimeCommandParams); readLevelControlInteractionInfo.put( "readOnOffTransitionTimeAttribute", @@ -2558,7 +2556,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readOnLevelAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlOnLevelCommandParams); readLevelControlInteractionInfo.put( "readOnLevelAttribute", readLevelControlOnLevelAttributeInteractionInfo); @@ -2570,7 +2568,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readOnTransitionTimeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlOnTransitionTimeCommandParams); readLevelControlInteractionInfo.put( "readOnTransitionTimeAttribute", readLevelControlOnTransitionTimeAttributeInteractionInfo); @@ -2582,7 +2580,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readOffTransitionTimeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlOffTransitionTimeCommandParams); readLevelControlInteractionInfo.put( "readOffTransitionTimeAttribute", @@ -2595,7 +2593,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readDefaultMoveRateAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlDefaultMoveRateCommandParams); readLevelControlInteractionInfo.put( "readDefaultMoveRateAttribute", readLevelControlDefaultMoveRateAttributeInteractionInfo); @@ -2608,7 +2606,7 @@ public Map> getReadAttributeMap() { .readStartUpCurrentLevelAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlStartUpCurrentLevelCommandParams); readLevelControlInteractionInfo.put( "readStartUpCurrentLevelAttribute", @@ -2621,7 +2619,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LevelControlCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLevelControlClusterRevisionCommandParams); readLevelControlInteractionInfo.put( "readClusterRevisionAttribute", readLevelControlClusterRevisionAttributeInteractionInfo); @@ -2635,7 +2633,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.LowPowerCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readLowPowerClusterRevisionCommandParams); readLowPowerInteractionInfo.put( "readClusterRevisionAttribute", readLowPowerClusterRevisionAttributeInteractionInfo); @@ -2650,7 +2648,7 @@ public Map> getReadAttributeMap() { .readMediaInputListAttribute( (ChipClusters.MediaInputCluster.MediaInputListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedMediaInputListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedMediaInputListAttributeCallback(), readMediaInputMediaInputListCommandParams); readMediaInputInteractionInfo.put( "readMediaInputListAttribute", readMediaInputMediaInputListAttributeInteractionInfo); @@ -2662,7 +2660,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.MediaInputCluster) cluster) .readCurrentMediaInputAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readMediaInputCurrentMediaInputCommandParams); readMediaInputInteractionInfo.put( "readCurrentMediaInputAttribute", readMediaInputCurrentMediaInputAttributeInteractionInfo); @@ -2674,7 +2672,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.MediaInputCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readMediaInputClusterRevisionCommandParams); readMediaInputInteractionInfo.put( "readClusterRevisionAttribute", readMediaInputClusterRevisionAttributeInteractionInfo); @@ -2688,7 +2686,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.MediaPlaybackCluster) cluster) .readPlaybackStateAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readMediaPlaybackPlaybackStateCommandParams); readMediaPlaybackInteractionInfo.put( "readPlaybackStateAttribute", readMediaPlaybackPlaybackStateAttributeInteractionInfo); @@ -2700,7 +2698,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.MediaPlaybackCluster) cluster) .readStartTimeAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readMediaPlaybackStartTimeCommandParams); readMediaPlaybackInteractionInfo.put( "readStartTimeAttribute", readMediaPlaybackStartTimeAttributeInteractionInfo); @@ -2712,7 +2710,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.MediaPlaybackCluster) cluster) .readDurationAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readMediaPlaybackDurationCommandParams); readMediaPlaybackInteractionInfo.put( "readDurationAttribute", readMediaPlaybackDurationAttributeInteractionInfo); @@ -2724,7 +2722,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.MediaPlaybackCluster) cluster) .readPositionUpdatedAtAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readMediaPlaybackPositionUpdatedAtCommandParams); readMediaPlaybackInteractionInfo.put( "readPositionUpdatedAtAttribute", @@ -2737,7 +2735,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.MediaPlaybackCluster) cluster) .readPositionAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readMediaPlaybackPositionCommandParams); readMediaPlaybackInteractionInfo.put( "readPositionAttribute", readMediaPlaybackPositionAttributeInteractionInfo); @@ -2749,7 +2747,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.MediaPlaybackCluster) cluster) .readPlaybackSpeedAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readMediaPlaybackPlaybackSpeedCommandParams); readMediaPlaybackInteractionInfo.put( "readPlaybackSpeedAttribute", readMediaPlaybackPlaybackSpeedAttributeInteractionInfo); @@ -2761,7 +2759,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.MediaPlaybackCluster) cluster) .readSeekRangeEndAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readMediaPlaybackSeekRangeEndCommandParams); readMediaPlaybackInteractionInfo.put( "readSeekRangeEndAttribute", readMediaPlaybackSeekRangeEndAttributeInteractionInfo); @@ -2773,7 +2771,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.MediaPlaybackCluster) cluster) .readSeekRangeStartAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readMediaPlaybackSeekRangeStartCommandParams); readMediaPlaybackInteractionInfo.put( "readSeekRangeStartAttribute", readMediaPlaybackSeekRangeStartAttributeInteractionInfo); @@ -2785,7 +2783,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.MediaPlaybackCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readMediaPlaybackClusterRevisionCommandParams); readMediaPlaybackInteractionInfo.put( "readClusterRevisionAttribute", readMediaPlaybackClusterRevisionAttributeInteractionInfo); @@ -2799,7 +2797,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ModeSelectCluster) cluster) .readCurrentModeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readModeSelectCurrentModeCommandParams); readModeSelectInteractionInfo.put( "readCurrentModeAttribute", readModeSelectCurrentModeAttributeInteractionInfo); @@ -2812,7 +2810,7 @@ public Map> getReadAttributeMap() { .readSupportedModesAttribute( (ChipClusters.ModeSelectCluster.SupportedModesAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedSupportedModesAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedSupportedModesAttributeCallback(), readModeSelectSupportedModesCommandParams); readModeSelectInteractionInfo.put( "readSupportedModesAttribute", readModeSelectSupportedModesAttributeInteractionInfo); @@ -2824,7 +2822,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ModeSelectCluster) cluster) .readOnModeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readModeSelectOnModeCommandParams); readModeSelectInteractionInfo.put( "readOnModeAttribute", readModeSelectOnModeAttributeInteractionInfo); @@ -2836,7 +2834,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ModeSelectCluster) cluster) .readStartUpModeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readModeSelectStartUpModeCommandParams); readModeSelectInteractionInfo.put( "readStartUpModeAttribute", readModeSelectStartUpModeAttributeInteractionInfo); @@ -2848,7 +2846,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ModeSelectCluster) cluster) .readDescriptionAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readModeSelectDescriptionCommandParams); readModeSelectInteractionInfo.put( "readDescriptionAttribute", readModeSelectDescriptionAttributeInteractionInfo); @@ -2860,7 +2858,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ModeSelectCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readModeSelectClusterRevisionCommandParams); readModeSelectInteractionInfo.put( "readClusterRevisionAttribute", readModeSelectClusterRevisionAttributeInteractionInfo); @@ -2874,7 +2872,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.NetworkCommissioningCluster) cluster) .readFeatureMapAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readNetworkCommissioningFeatureMapCommandParams); readNetworkCommissioningInteractionInfo.put( "readFeatureMapAttribute", readNetworkCommissioningFeatureMapAttributeInteractionInfo); @@ -2886,7 +2884,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.NetworkCommissioningCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readNetworkCommissioningClusterRevisionCommandParams); readNetworkCommissioningInteractionInfo.put( "readClusterRevisionAttribute", @@ -2902,7 +2900,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OtaSoftwareUpdateProviderCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOtaSoftwareUpdateProviderClusterRevisionCommandParams); readOtaSoftwareUpdateProviderInteractionInfo.put( "readClusterRevisionAttribute", @@ -2920,7 +2918,7 @@ public Map> getReadAttributeMap() { .readDefaultOtaProviderAttribute( (ChipClusters.OctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedOctetStringAttributeCallback(), readOtaSoftwareUpdateRequestorDefaultOtaProviderCommandParams); readOtaSoftwareUpdateRequestorInteractionInfo.put( "readDefaultOtaProviderAttribute", @@ -2933,7 +2931,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OtaSoftwareUpdateRequestorCluster) cluster) .readUpdatePossibleAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readOtaSoftwareUpdateRequestorUpdatePossibleCommandParams); readOtaSoftwareUpdateRequestorInteractionInfo.put( "readUpdatePossibleAttribute", @@ -2946,7 +2944,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OtaSoftwareUpdateRequestorCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOtaSoftwareUpdateRequestorClusterRevisionCommandParams); readOtaSoftwareUpdateRequestorInteractionInfo.put( "readClusterRevisionAttribute", @@ -2962,7 +2960,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OccupancySensingCluster) cluster) .readOccupancyAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOccupancySensingOccupancyCommandParams); readOccupancySensingInteractionInfo.put( "readOccupancyAttribute", readOccupancySensingOccupancyAttributeInteractionInfo); @@ -2975,7 +2973,7 @@ public Map> getReadAttributeMap() { .readOccupancySensorTypeAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOccupancySensingOccupancySensorTypeCommandParams); readOccupancySensingInteractionInfo.put( "readOccupancySensorTypeAttribute", @@ -2989,7 +2987,7 @@ public Map> getReadAttributeMap() { .readOccupancySensorTypeBitmapAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOccupancySensingOccupancySensorTypeBitmapCommandParams); readOccupancySensingInteractionInfo.put( "readOccupancySensorTypeBitmapAttribute", @@ -3002,7 +3000,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OccupancySensingCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOccupancySensingClusterRevisionCommandParams); readOccupancySensingInteractionInfo.put( "readClusterRevisionAttribute", @@ -3017,7 +3015,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OnOffCluster) cluster) .readOnOffAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readOnOffOnOffCommandParams); readOnOffInteractionInfo.put("readOnOffAttribute", readOnOffOnOffAttributeInteractionInfo); Map readOnOffGlobalSceneControlCommandParams = @@ -3029,7 +3027,7 @@ public Map> getReadAttributeMap() { .readGlobalSceneControlAttribute( (ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readOnOffGlobalSceneControlCommandParams); readOnOffInteractionInfo.put( "readGlobalSceneControlAttribute", readOnOffGlobalSceneControlAttributeInteractionInfo); @@ -3041,7 +3039,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OnOffCluster) cluster) .readOnTimeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOnOffOnTimeCommandParams); readOnOffInteractionInfo.put("readOnTimeAttribute", readOnOffOnTimeAttributeInteractionInfo); Map readOnOffOffWaitTimeCommandParams = @@ -3052,7 +3050,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OnOffCluster) cluster) .readOffWaitTimeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOnOffOffWaitTimeCommandParams); readOnOffInteractionInfo.put( "readOffWaitTimeAttribute", readOnOffOffWaitTimeAttributeInteractionInfo); @@ -3064,7 +3062,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OnOffCluster) cluster) .readStartUpOnOffAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOnOffStartUpOnOffCommandParams); readOnOffInteractionInfo.put( "readStartUpOnOffAttribute", readOnOffStartUpOnOffAttributeInteractionInfo); @@ -3076,7 +3074,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OnOffCluster) cluster) .readFeatureMapAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readOnOffFeatureMapCommandParams); readOnOffInteractionInfo.put( "readFeatureMapAttribute", readOnOffFeatureMapAttributeInteractionInfo); @@ -3088,7 +3086,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OnOffCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOnOffClusterRevisionCommandParams); readOnOffInteractionInfo.put( "readClusterRevisionAttribute", readOnOffClusterRevisionAttributeInteractionInfo); @@ -3103,7 +3101,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OnOffSwitchConfigurationCluster) cluster) .readSwitchTypeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOnOffSwitchConfigurationSwitchTypeCommandParams); readOnOffSwitchConfigurationInteractionInfo.put( "readSwitchTypeAttribute", readOnOffSwitchConfigurationSwitchTypeAttributeInteractionInfo); @@ -3115,7 +3113,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OnOffSwitchConfigurationCluster) cluster) .readSwitchActionsAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOnOffSwitchConfigurationSwitchActionsCommandParams); readOnOffSwitchConfigurationInteractionInfo.put( "readSwitchActionsAttribute", @@ -3128,7 +3126,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OnOffSwitchConfigurationCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOnOffSwitchConfigurationClusterRevisionCommandParams); readOnOffSwitchConfigurationInteractionInfo.put( "readClusterRevisionAttribute", @@ -3145,7 +3143,7 @@ public Map> getReadAttributeMap() { (ChipClusters.OperationalCredentialsCluster.FabricsListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedFabricsListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedFabricsListAttributeCallback(), readOperationalCredentialsFabricsListCommandParams); readOperationalCredentialsInteractionInfo.put( "readFabricsListAttribute", readOperationalCredentialsFabricsListAttributeInteractionInfo); @@ -3157,7 +3155,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OperationalCredentialsCluster) cluster) .readSupportedFabricsAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOperationalCredentialsSupportedFabricsCommandParams); readOperationalCredentialsInteractionInfo.put( "readSupportedFabricsAttribute", @@ -3171,7 +3169,7 @@ public Map> getReadAttributeMap() { .readCommissionedFabricsAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOperationalCredentialsCommissionedFabricsCommandParams); readOperationalCredentialsInteractionInfo.put( "readCommissionedFabricsAttribute", @@ -3188,7 +3186,7 @@ public Map> getReadAttributeMap() { .TrustedRootCertificatesAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedTrustedRootCertificatesAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedTrustedRootCertificatesAttributeCallback(), readOperationalCredentialsTrustedRootCertificatesCommandParams); readOperationalCredentialsInteractionInfo.put( "readTrustedRootCertificatesAttribute", @@ -3202,7 +3200,7 @@ public Map> getReadAttributeMap() { .readCurrentFabricIndexAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOperationalCredentialsCurrentFabricIndexCommandParams); readOperationalCredentialsInteractionInfo.put( "readCurrentFabricIndexAttribute", @@ -3215,7 +3213,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.OperationalCredentialsCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readOperationalCredentialsClusterRevisionCommandParams); readOperationalCredentialsInteractionInfo.put( "readClusterRevisionAttribute", @@ -3230,7 +3228,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PowerSourceCluster) cluster) .readStatusAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPowerSourceStatusCommandParams); readPowerSourceInteractionInfo.put( "readStatusAttribute", readPowerSourceStatusAttributeInteractionInfo); @@ -3242,7 +3240,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PowerSourceCluster) cluster) .readOrderAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPowerSourceOrderCommandParams); readPowerSourceInteractionInfo.put( "readOrderAttribute", readPowerSourceOrderAttributeInteractionInfo); @@ -3254,7 +3252,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PowerSourceCluster) cluster) .readDescriptionAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readPowerSourceDescriptionCommandParams); readPowerSourceInteractionInfo.put( "readDescriptionAttribute", readPowerSourceDescriptionAttributeInteractionInfo); @@ -3266,7 +3264,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PowerSourceCluster) cluster) .readBatteryVoltageAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readPowerSourceBatteryVoltageCommandParams); readPowerSourceInteractionInfo.put( "readBatteryVoltageAttribute", readPowerSourceBatteryVoltageAttributeInteractionInfo); @@ -3279,7 +3277,7 @@ public Map> getReadAttributeMap() { .readBatteryPercentRemainingAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPowerSourceBatteryPercentRemainingCommandParams); readPowerSourceInteractionInfo.put( "readBatteryPercentRemainingAttribute", @@ -3292,7 +3290,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PowerSourceCluster) cluster) .readBatteryTimeRemainingAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readPowerSourceBatteryTimeRemainingCommandParams); readPowerSourceInteractionInfo.put( "readBatteryTimeRemainingAttribute", @@ -3306,7 +3304,7 @@ public Map> getReadAttributeMap() { .readBatteryChargeLevelAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPowerSourceBatteryChargeLevelCommandParams); readPowerSourceInteractionInfo.put( "readBatteryChargeLevelAttribute", @@ -3321,7 +3319,7 @@ public Map> getReadAttributeMap() { (ChipClusters.PowerSourceCluster.ActiveBatteryFaultsAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedActiveBatteryFaultsAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedActiveBatteryFaultsAttributeCallback(), readPowerSourceActiveBatteryFaultsCommandParams); readPowerSourceInteractionInfo.put( "readActiveBatteryFaultsAttribute", @@ -3335,7 +3333,7 @@ public Map> getReadAttributeMap() { .readBatteryChargeStateAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPowerSourceBatteryChargeStateCommandParams); readPowerSourceInteractionInfo.put( "readBatteryChargeStateAttribute", @@ -3348,7 +3346,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PowerSourceCluster) cluster) .readFeatureMapAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readPowerSourceFeatureMapCommandParams); readPowerSourceInteractionInfo.put( "readFeatureMapAttribute", readPowerSourceFeatureMapAttributeInteractionInfo); @@ -3360,7 +3358,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PowerSourceCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPowerSourceClusterRevisionCommandParams); readPowerSourceInteractionInfo.put( "readClusterRevisionAttribute", readPowerSourceClusterRevisionAttributeInteractionInfo); @@ -3374,7 +3372,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PressureMeasurementCluster) cluster) .readMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPressureMeasurementMeasuredValueCommandParams); readPressureMeasurementInteractionInfo.put( "readMeasuredValueAttribute", readPressureMeasurementMeasuredValueAttributeInteractionInfo); @@ -3386,7 +3384,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PressureMeasurementCluster) cluster) .readMinMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPressureMeasurementMinMeasuredValueCommandParams); readPressureMeasurementInteractionInfo.put( "readMinMeasuredValueAttribute", @@ -3399,7 +3397,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PressureMeasurementCluster) cluster) .readMaxMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPressureMeasurementMaxMeasuredValueCommandParams); readPressureMeasurementInteractionInfo.put( "readMaxMeasuredValueAttribute", @@ -3412,7 +3410,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PressureMeasurementCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPressureMeasurementClusterRevisionCommandParams); readPressureMeasurementInteractionInfo.put( "readClusterRevisionAttribute", @@ -3428,7 +3426,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMaxPressureAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMaxPressureCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMaxPressureAttribute", @@ -3441,7 +3439,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMaxSpeedAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMaxSpeedCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMaxSpeedAttribute", readPumpConfigurationAndControlMaxSpeedAttributeInteractionInfo); @@ -3453,7 +3451,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMaxFlowAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMaxFlowCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMaxFlowAttribute", readPumpConfigurationAndControlMaxFlowAttributeInteractionInfo); @@ -3465,7 +3463,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMinConstPressureAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMinConstPressureCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMinConstPressureAttribute", @@ -3478,7 +3476,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMaxConstPressureAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMaxConstPressureCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMaxConstPressureAttribute", @@ -3491,7 +3489,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMinCompPressureAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMinCompPressureCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMinCompPressureAttribute", @@ -3504,7 +3502,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMaxCompPressureAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMaxCompPressureCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMaxCompPressureAttribute", @@ -3517,7 +3515,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMinConstSpeedAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMinConstSpeedCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMinConstSpeedAttribute", @@ -3530,7 +3528,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMaxConstSpeedAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMaxConstSpeedCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMaxConstSpeedAttribute", @@ -3543,7 +3541,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMinConstFlowAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMinConstFlowCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMinConstFlowAttribute", @@ -3556,7 +3554,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMaxConstFlowAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMaxConstFlowCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMaxConstFlowAttribute", @@ -3569,7 +3567,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMinConstTempAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMinConstTempCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMinConstTempAttribute", @@ -3582,7 +3580,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readMaxConstTempAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlMaxConstTempCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readMaxConstTempAttribute", @@ -3595,7 +3593,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readPumpStatusAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlPumpStatusCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readPumpStatusAttribute", @@ -3610,7 +3608,7 @@ public Map> getReadAttributeMap() { .readEffectiveOperationModeAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlEffectiveOperationModeCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readEffectiveOperationModeAttribute", @@ -3625,7 +3623,7 @@ public Map> getReadAttributeMap() { .readEffectiveControlModeAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlEffectiveControlModeCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readEffectiveControlModeAttribute", @@ -3638,7 +3636,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readCapacityAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlCapacityCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readCapacityAttribute", readPumpConfigurationAndControlCapacityAttributeInteractionInfo); @@ -3650,7 +3648,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readSpeedAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlSpeedCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readSpeedAttribute", readPumpConfigurationAndControlSpeedAttributeInteractionInfo); @@ -3664,7 +3662,7 @@ public Map> getReadAttributeMap() { .readLifetimeEnergyConsumedAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readPumpConfigurationAndControlLifetimeEnergyConsumedCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readLifetimeEnergyConsumedAttribute", @@ -3677,7 +3675,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readOperationModeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlOperationModeCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readOperationModeAttribute", @@ -3690,7 +3688,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readControlModeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlControlModeCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readControlModeAttribute", @@ -3703,7 +3701,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readAlarmMaskAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlAlarmMaskCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readAlarmMaskAttribute", readPumpConfigurationAndControlAlarmMaskAttributeInteractionInfo); @@ -3715,7 +3713,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readFeatureMapAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readPumpConfigurationAndControlFeatureMapCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readFeatureMapAttribute", @@ -3728,7 +3726,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.PumpConfigurationAndControlCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readPumpConfigurationAndControlClusterRevisionCommandParams); readPumpConfigurationAndControlInteractionInfo.put( "readClusterRevisionAttribute", @@ -3745,7 +3743,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.RelativeHumidityMeasurementCluster) cluster) .readMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readRelativeHumidityMeasurementMeasuredValueCommandParams); readRelativeHumidityMeasurementInteractionInfo.put( "readMeasuredValueAttribute", @@ -3758,7 +3756,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.RelativeHumidityMeasurementCluster) cluster) .readMinMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readRelativeHumidityMeasurementMinMeasuredValueCommandParams); readRelativeHumidityMeasurementInteractionInfo.put( "readMinMeasuredValueAttribute", @@ -3771,7 +3769,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.RelativeHumidityMeasurementCluster) cluster) .readMaxMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readRelativeHumidityMeasurementMaxMeasuredValueCommandParams); readRelativeHumidityMeasurementInteractionInfo.put( "readMaxMeasuredValueAttribute", @@ -3784,7 +3782,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.RelativeHumidityMeasurementCluster) cluster) .readToleranceAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readRelativeHumidityMeasurementToleranceCommandParams); readRelativeHumidityMeasurementInteractionInfo.put( "readToleranceAttribute", readRelativeHumidityMeasurementToleranceAttributeInteractionInfo); @@ -3796,7 +3794,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.RelativeHumidityMeasurementCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readRelativeHumidityMeasurementClusterRevisionCommandParams); readRelativeHumidityMeasurementInteractionInfo.put( "readClusterRevisionAttribute", @@ -3812,7 +3810,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ScenesCluster) cluster) .readSceneCountAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readScenesSceneCountCommandParams); readScenesInteractionInfo.put( "readSceneCountAttribute", readScenesSceneCountAttributeInteractionInfo); @@ -3824,7 +3822,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ScenesCluster) cluster) .readCurrentSceneAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readScenesCurrentSceneCommandParams); readScenesInteractionInfo.put( "readCurrentSceneAttribute", readScenesCurrentSceneAttributeInteractionInfo); @@ -3836,7 +3834,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ScenesCluster) cluster) .readCurrentGroupAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readScenesCurrentGroupCommandParams); readScenesInteractionInfo.put( "readCurrentGroupAttribute", readScenesCurrentGroupAttributeInteractionInfo); @@ -3848,7 +3846,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ScenesCluster) cluster) .readSceneValidAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readScenesSceneValidCommandParams); readScenesInteractionInfo.put( "readSceneValidAttribute", readScenesSceneValidAttributeInteractionInfo); @@ -3860,7 +3858,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ScenesCluster) cluster) .readNameSupportAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readScenesNameSupportCommandParams); readScenesInteractionInfo.put( "readNameSupportAttribute", readScenesNameSupportAttributeInteractionInfo); @@ -3872,7 +3870,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.ScenesCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readScenesClusterRevisionCommandParams); readScenesInteractionInfo.put( "readClusterRevisionAttribute", readScenesClusterRevisionAttributeInteractionInfo); @@ -3888,7 +3886,7 @@ public Map> getReadAttributeMap() { (ChipClusters.SoftwareDiagnosticsCluster.ThreadMetricsAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedThreadMetricsAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedThreadMetricsAttributeCallback(), readSoftwareDiagnosticsThreadMetricsCommandParams); readSoftwareDiagnosticsInteractionInfo.put( "readThreadMetricsAttribute", readSoftwareDiagnosticsThreadMetricsAttributeInteractionInfo); @@ -3900,7 +3898,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.SoftwareDiagnosticsCluster) cluster) .readCurrentHeapFreeAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readSoftwareDiagnosticsCurrentHeapFreeCommandParams); readSoftwareDiagnosticsInteractionInfo.put( "readCurrentHeapFreeAttribute", @@ -3913,7 +3911,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.SoftwareDiagnosticsCluster) cluster) .readCurrentHeapUsedAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readSoftwareDiagnosticsCurrentHeapUsedCommandParams); readSoftwareDiagnosticsInteractionInfo.put( "readCurrentHeapUsedAttribute", @@ -3927,7 +3925,7 @@ public Map> getReadAttributeMap() { .readCurrentHeapHighWatermarkAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readSoftwareDiagnosticsCurrentHeapHighWatermarkCommandParams); readSoftwareDiagnosticsInteractionInfo.put( "readCurrentHeapHighWatermarkAttribute", @@ -3940,7 +3938,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.SoftwareDiagnosticsCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readSoftwareDiagnosticsClusterRevisionCommandParams); readSoftwareDiagnosticsInteractionInfo.put( "readClusterRevisionAttribute", @@ -3955,7 +3953,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.SwitchCluster) cluster) .readNumberOfPositionsAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readSwitchNumberOfPositionsCommandParams); readSwitchInteractionInfo.put( "readNumberOfPositionsAttribute", readSwitchNumberOfPositionsAttributeInteractionInfo); @@ -3967,7 +3965,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.SwitchCluster) cluster) .readCurrentPositionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readSwitchCurrentPositionCommandParams); readSwitchInteractionInfo.put( "readCurrentPositionAttribute", readSwitchCurrentPositionAttributeInteractionInfo); @@ -3979,7 +3977,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.SwitchCluster) cluster) .readMultiPressMaxAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readSwitchMultiPressMaxCommandParams); readSwitchInteractionInfo.put( "readMultiPressMaxAttribute", readSwitchMultiPressMaxAttributeInteractionInfo); @@ -3991,7 +3989,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.SwitchCluster) cluster) .readFeatureMapAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readSwitchFeatureMapCommandParams); readSwitchInteractionInfo.put( "readFeatureMapAttribute", readSwitchFeatureMapAttributeInteractionInfo); @@ -4003,7 +4001,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.SwitchCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readSwitchClusterRevisionCommandParams); readSwitchInteractionInfo.put( "readClusterRevisionAttribute", readSwitchClusterRevisionAttributeInteractionInfo); @@ -4018,7 +4016,7 @@ public Map> getReadAttributeMap() { .readTvChannelListAttribute( (ChipClusters.TvChannelCluster.TvChannelListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedTvChannelListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedTvChannelListAttributeCallback(), readTvChannelTvChannelListCommandParams); readTvChannelInteractionInfo.put( "readTvChannelListAttribute", readTvChannelTvChannelListAttributeInteractionInfo); @@ -4031,7 +4029,7 @@ public Map> getReadAttributeMap() { .readTvChannelLineupAttribute( (ChipClusters.OctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedOctetStringAttributeCallback(), readTvChannelTvChannelLineupCommandParams); readTvChannelInteractionInfo.put( "readTvChannelLineupAttribute", readTvChannelTvChannelLineupAttributeInteractionInfo); @@ -4044,7 +4042,7 @@ public Map> getReadAttributeMap() { .readCurrentTvChannelAttribute( (ChipClusters.OctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedOctetStringAttributeCallback(), readTvChannelCurrentTvChannelCommandParams); readTvChannelInteractionInfo.put( "readCurrentTvChannelAttribute", readTvChannelCurrentTvChannelAttributeInteractionInfo); @@ -4056,7 +4054,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TvChannelCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTvChannelClusterRevisionCommandParams); readTvChannelInteractionInfo.put( "readClusterRevisionAttribute", readTvChannelClusterRevisionAttributeInteractionInfo); @@ -4072,7 +4070,7 @@ public Map> getReadAttributeMap() { (ChipClusters.TargetNavigatorCluster.TargetNavigatorListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedTargetNavigatorListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedTargetNavigatorListAttributeCallback(), readTargetNavigatorTargetNavigatorListCommandParams); readTargetNavigatorInteractionInfo.put( "readTargetNavigatorListAttribute", @@ -4085,7 +4083,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TargetNavigatorCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTargetNavigatorClusterRevisionCommandParams); readTargetNavigatorInteractionInfo.put( "readClusterRevisionAttribute", readTargetNavigatorClusterRevisionAttributeInteractionInfo); @@ -4099,7 +4097,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TemperatureMeasurementCluster) cluster) .readMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTemperatureMeasurementMeasuredValueCommandParams); readTemperatureMeasurementInteractionInfo.put( "readMeasuredValueAttribute", @@ -4112,7 +4110,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TemperatureMeasurementCluster) cluster) .readMinMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTemperatureMeasurementMinMeasuredValueCommandParams); readTemperatureMeasurementInteractionInfo.put( "readMinMeasuredValueAttribute", @@ -4125,7 +4123,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TemperatureMeasurementCluster) cluster) .readMaxMeasuredValueAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTemperatureMeasurementMaxMeasuredValueCommandParams); readTemperatureMeasurementInteractionInfo.put( "readMaxMeasuredValueAttribute", @@ -4138,7 +4136,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TemperatureMeasurementCluster) cluster) .readToleranceAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTemperatureMeasurementToleranceCommandParams); readTemperatureMeasurementInteractionInfo.put( "readToleranceAttribute", readTemperatureMeasurementToleranceAttributeInteractionInfo); @@ -4150,7 +4148,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TemperatureMeasurementCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTemperatureMeasurementClusterRevisionCommandParams); readTemperatureMeasurementInteractionInfo.put( "readClusterRevisionAttribute", @@ -4165,7 +4163,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readBooleanAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readTestClusterBooleanCommandParams); readTestClusterInteractionInfo.put( "readBooleanAttribute", readTestClusterBooleanAttributeInteractionInfo); @@ -4177,7 +4175,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readBitmap8Attribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterBitmap8CommandParams); readTestClusterInteractionInfo.put( "readBitmap8Attribute", readTestClusterBitmap8AttributeInteractionInfo); @@ -4189,7 +4187,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readBitmap16Attribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterBitmap16CommandParams); readTestClusterInteractionInfo.put( "readBitmap16Attribute", readTestClusterBitmap16AttributeInteractionInfo); @@ -4201,7 +4199,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readBitmap32Attribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterBitmap32CommandParams); readTestClusterInteractionInfo.put( "readBitmap32Attribute", readTestClusterBitmap32AttributeInteractionInfo); @@ -4213,7 +4211,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readBitmap64Attribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterBitmap64CommandParams); readTestClusterInteractionInfo.put( "readBitmap64Attribute", readTestClusterBitmap64AttributeInteractionInfo); @@ -4225,7 +4223,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readInt8uAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterInt8uCommandParams); readTestClusterInteractionInfo.put( "readInt8uAttribute", readTestClusterInt8uAttributeInteractionInfo); @@ -4237,7 +4235,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readInt16uAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterInt16uCommandParams); readTestClusterInteractionInfo.put( "readInt16uAttribute", readTestClusterInt16uAttributeInteractionInfo); @@ -4249,7 +4247,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readInt32uAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterInt32uCommandParams); readTestClusterInteractionInfo.put( "readInt32uAttribute", readTestClusterInt32uAttributeInteractionInfo); @@ -4261,7 +4259,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readInt64uAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterInt64uCommandParams); readTestClusterInteractionInfo.put( "readInt64uAttribute", readTestClusterInt64uAttributeInteractionInfo); @@ -4273,7 +4271,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readInt8sAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterInt8sCommandParams); readTestClusterInteractionInfo.put( "readInt8sAttribute", readTestClusterInt8sAttributeInteractionInfo); @@ -4285,7 +4283,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readInt16sAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterInt16sCommandParams); readTestClusterInteractionInfo.put( "readInt16sAttribute", readTestClusterInt16sAttributeInteractionInfo); @@ -4297,7 +4295,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readInt32sAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterInt32sCommandParams); readTestClusterInteractionInfo.put( "readInt32sAttribute", readTestClusterInt32sAttributeInteractionInfo); @@ -4309,7 +4307,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readInt64sAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterInt64sCommandParams); readTestClusterInteractionInfo.put( "readInt64sAttribute", readTestClusterInt64sAttributeInteractionInfo); @@ -4321,7 +4319,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readEnum8Attribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterEnum8CommandParams); readTestClusterInteractionInfo.put( "readEnum8Attribute", readTestClusterEnum8AttributeInteractionInfo); @@ -4333,7 +4331,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readEnum16Attribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterEnum16CommandParams); readTestClusterInteractionInfo.put( "readEnum16Attribute", readTestClusterEnum16AttributeInteractionInfo); @@ -4345,7 +4343,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readOctetStringAttribute((ChipClusters.OctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedOctetStringAttributeCallback(), readTestClusterOctetStringCommandParams); readTestClusterInteractionInfo.put( "readOctetStringAttribute", readTestClusterOctetStringAttributeInteractionInfo); @@ -4358,7 +4356,7 @@ public Map> getReadAttributeMap() { .readListInt8uAttribute( (ChipClusters.TestClusterCluster.ListInt8uAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedListInt8uAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedListInt8uAttributeCallback(), readTestClusterListInt8uCommandParams); readTestClusterInteractionInfo.put( "readListInt8uAttribute", readTestClusterListInt8uAttributeInteractionInfo); @@ -4371,7 +4369,7 @@ public Map> getReadAttributeMap() { .readListOctetStringAttribute( (ChipClusters.TestClusterCluster.ListOctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedListOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedListOctetStringAttributeCallback(), readTestClusterListOctetStringCommandParams); readTestClusterInteractionInfo.put( "readListOctetStringAttribute", readTestClusterListOctetStringAttributeInteractionInfo); @@ -4385,7 +4383,7 @@ public Map> getReadAttributeMap() { (ChipClusters.TestClusterCluster.ListStructOctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedListStructOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedListStructOctetStringAttributeCallback(), readTestClusterListStructOctetStringCommandParams); readTestClusterInteractionInfo.put( "readListStructOctetStringAttribute", @@ -4399,7 +4397,7 @@ public Map> getReadAttributeMap() { .readLongOctetStringAttribute( (ChipClusters.OctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedOctetStringAttributeCallback(), readTestClusterLongOctetStringCommandParams); readTestClusterInteractionInfo.put( "readLongOctetStringAttribute", readTestClusterLongOctetStringAttributeInteractionInfo); @@ -4411,7 +4409,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readCharStringAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readTestClusterCharStringCommandParams); readTestClusterInteractionInfo.put( "readCharStringAttribute", readTestClusterCharStringAttributeInteractionInfo); @@ -4423,7 +4421,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readLongCharStringAttribute((ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readTestClusterLongCharStringCommandParams); readTestClusterInteractionInfo.put( "readLongCharStringAttribute", readTestClusterLongCharStringAttributeInteractionInfo); @@ -4435,7 +4433,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readEpochUsAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterEpochUsCommandParams); readTestClusterInteractionInfo.put( "readEpochUsAttribute", readTestClusterEpochUsAttributeInteractionInfo); @@ -4447,7 +4445,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readEpochSAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterEpochSCommandParams); readTestClusterInteractionInfo.put( "readEpochSAttribute", readTestClusterEpochSAttributeInteractionInfo); @@ -4459,7 +4457,7 @@ public Map> getReadAttributeMap() { ((ChipClusters.TestClusterCluster) cluster) .readVendorIdAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterVendorIdCommandParams); readTestClusterInteractionInfo.put( "readVendorIdAttribute", readTestClusterVendorIdAttributeInteractionInfo); @@ -4475,7 +4473,7 @@ public Map> getReadAttributeMap() { callback); }, () -> - clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback(), + new ClusterInfoMapping.DelegatedListNullablesAndOptionalsStructAttributeCallback(), readTestClusterListNullablesAndOptionalsStructCommandParams); readTestClusterInteractionInfo.put( "readListNullablesAndOptionalsStructAttribute", @@ -4488,7 +4486,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readUnsupportedAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readTestClusterUnsupportedCommandParams); readTestClusterInteractionInfo.put( "readUnsupportedAttribute", readTestClusterUnsupportedAttributeInteractionInfo); @@ -4500,7 +4498,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableBooleanAttribute((ChipClusters.BooleanAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedBooleanAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedBooleanAttributeCallback(), readTestClusterNullableBooleanCommandParams); readTestClusterInteractionInfo.put( "readNullableBooleanAttribute", readTestClusterNullableBooleanAttributeInteractionInfo); @@ -4512,7 +4510,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableBitmap8Attribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterNullableBitmap8CommandParams); readTestClusterInteractionInfo.put( "readNullableBitmap8Attribute", readTestClusterNullableBitmap8AttributeInteractionInfo); @@ -4524,7 +4522,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableBitmap16Attribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterNullableBitmap16CommandParams); readTestClusterInteractionInfo.put( "readNullableBitmap16Attribute", readTestClusterNullableBitmap16AttributeInteractionInfo); @@ -4536,7 +4534,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableBitmap32Attribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterNullableBitmap32CommandParams); readTestClusterInteractionInfo.put( "readNullableBitmap32Attribute", readTestClusterNullableBitmap32AttributeInteractionInfo); @@ -4548,7 +4546,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableBitmap64Attribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterNullableBitmap64CommandParams); readTestClusterInteractionInfo.put( "readNullableBitmap64Attribute", readTestClusterNullableBitmap64AttributeInteractionInfo); @@ -4560,7 +4558,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableInt8uAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterNullableInt8uCommandParams); readTestClusterInteractionInfo.put( "readNullableInt8uAttribute", readTestClusterNullableInt8uAttributeInteractionInfo); @@ -4572,7 +4570,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableInt16uAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterNullableInt16uCommandParams); readTestClusterInteractionInfo.put( "readNullableInt16uAttribute", readTestClusterNullableInt16uAttributeInteractionInfo); @@ -4584,7 +4582,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableInt32uAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterNullableInt32uCommandParams); readTestClusterInteractionInfo.put( "readNullableInt32uAttribute", readTestClusterNullableInt32uAttributeInteractionInfo); @@ -4596,7 +4594,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableInt64uAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterNullableInt64uCommandParams); readTestClusterInteractionInfo.put( "readNullableInt64uAttribute", readTestClusterNullableInt64uAttributeInteractionInfo); @@ -4608,7 +4606,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableInt8sAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterNullableInt8sCommandParams); readTestClusterInteractionInfo.put( "readNullableInt8sAttribute", readTestClusterNullableInt8sAttributeInteractionInfo); @@ -4620,7 +4618,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableInt16sAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterNullableInt16sCommandParams); readTestClusterInteractionInfo.put( "readNullableInt16sAttribute", readTestClusterNullableInt16sAttributeInteractionInfo); @@ -4632,7 +4630,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableInt32sAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterNullableInt32sCommandParams); readTestClusterInteractionInfo.put( "readNullableInt32sAttribute", readTestClusterNullableInt32sAttributeInteractionInfo); @@ -4644,7 +4642,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableInt64sAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readTestClusterNullableInt64sCommandParams); readTestClusterInteractionInfo.put( "readNullableInt64sAttribute", readTestClusterNullableInt64sAttributeInteractionInfo); @@ -4656,7 +4654,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableEnum8Attribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterNullableEnum8CommandParams); readTestClusterInteractionInfo.put( "readNullableEnum8Attribute", readTestClusterNullableEnum8AttributeInteractionInfo); @@ -4668,7 +4666,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readNullableEnum16Attribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterNullableEnum16CommandParams); readTestClusterInteractionInfo.put( "readNullableEnum16Attribute", readTestClusterNullableEnum16AttributeInteractionInfo); @@ -4681,7 +4679,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readNullableOctetStringAttribute( (ChipClusters.OctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedOctetStringAttributeCallback(), readTestClusterNullableOctetStringCommandParams); readTestClusterInteractionInfo.put( "readNullableOctetStringAttribute", @@ -4695,7 +4693,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readNullableCharStringAttribute( (ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readTestClusterNullableCharStringCommandParams); readTestClusterInteractionInfo.put( "readNullableCharStringAttribute", @@ -4708,7 +4706,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.TestClusterCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readTestClusterClusterRevisionCommandParams); readTestClusterInteractionInfo.put( "readClusterRevisionAttribute", readTestClusterClusterRevisionAttributeInteractionInfo); @@ -4722,7 +4720,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThermostatCluster) cluster) .readLocalTemperatureAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatLocalTemperatureCommandParams); readThermostatInteractionInfo.put( "readLocalTemperatureAttribute", readThermostatLocalTemperatureAttributeInteractionInfo); @@ -4735,7 +4733,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readAbsMinHeatSetpointLimitAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatAbsMinHeatSetpointLimitCommandParams); readThermostatInteractionInfo.put( "readAbsMinHeatSetpointLimitAttribute", @@ -4749,7 +4747,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readAbsMaxHeatSetpointLimitAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatAbsMaxHeatSetpointLimitCommandParams); readThermostatInteractionInfo.put( "readAbsMaxHeatSetpointLimitAttribute", @@ -4763,7 +4761,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readAbsMinCoolSetpointLimitAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatAbsMinCoolSetpointLimitCommandParams); readThermostatInteractionInfo.put( "readAbsMinCoolSetpointLimitAttribute", @@ -4777,7 +4775,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readAbsMaxCoolSetpointLimitAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatAbsMaxCoolSetpointLimitCommandParams); readThermostatInteractionInfo.put( "readAbsMaxCoolSetpointLimitAttribute", @@ -4791,7 +4789,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readOccupiedCoolingSetpointAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatOccupiedCoolingSetpointCommandParams); readThermostatInteractionInfo.put( "readOccupiedCoolingSetpointAttribute", @@ -4805,7 +4803,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readOccupiedHeatingSetpointAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatOccupiedHeatingSetpointCommandParams); readThermostatInteractionInfo.put( "readOccupiedHeatingSetpointAttribute", @@ -4819,7 +4817,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readMinHeatSetpointLimitAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatMinHeatSetpointLimitCommandParams); readThermostatInteractionInfo.put( "readMinHeatSetpointLimitAttribute", @@ -4833,7 +4831,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readMaxHeatSetpointLimitAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatMaxHeatSetpointLimitCommandParams); readThermostatInteractionInfo.put( "readMaxHeatSetpointLimitAttribute", @@ -4847,7 +4845,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readMinCoolSetpointLimitAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatMinCoolSetpointLimitCommandParams); readThermostatInteractionInfo.put( "readMinCoolSetpointLimitAttribute", @@ -4861,7 +4859,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readMaxCoolSetpointLimitAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatMaxCoolSetpointLimitCommandParams); readThermostatInteractionInfo.put( "readMaxCoolSetpointLimitAttribute", @@ -4875,7 +4873,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readMinSetpointDeadBandAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatMinSetpointDeadBandCommandParams); readThermostatInteractionInfo.put( "readMinSetpointDeadBandAttribute", @@ -4889,7 +4887,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readControlSequenceOfOperationAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatControlSequenceOfOperationCommandParams); readThermostatInteractionInfo.put( "readControlSequenceOfOperationAttribute", @@ -4902,7 +4900,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThermostatCluster) cluster) .readSystemModeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatSystemModeCommandParams); readThermostatInteractionInfo.put( "readSystemModeAttribute", readThermostatSystemModeAttributeInteractionInfo); @@ -4914,7 +4912,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThermostatCluster) cluster) .readStartOfWeekAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatStartOfWeekCommandParams); readThermostatInteractionInfo.put( "readStartOfWeekAttribute", readThermostatStartOfWeekAttributeInteractionInfo); @@ -4927,7 +4925,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readNumberOfWeeklyTransitionsAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatNumberOfWeeklyTransitionsCommandParams); readThermostatInteractionInfo.put( "readNumberOfWeeklyTransitionsAttribute", @@ -4941,7 +4939,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readNumberOfDailyTransitionsAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatNumberOfDailyTransitionsCommandParams); readThermostatInteractionInfo.put( "readNumberOfDailyTransitionsAttribute", @@ -4954,7 +4952,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThermostatCluster) cluster) .readFeatureMapAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThermostatFeatureMapCommandParams); readThermostatInteractionInfo.put( "readFeatureMapAttribute", readThermostatFeatureMapAttributeInteractionInfo); @@ -4966,7 +4964,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThermostatCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatClusterRevisionCommandParams); readThermostatInteractionInfo.put( "readClusterRevisionAttribute", readThermostatClusterRevisionAttributeInteractionInfo); @@ -4984,7 +4982,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readTemperatureDisplayModeAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatUserInterfaceConfigurationTemperatureDisplayModeCommandParams); readThermostatUserInterfaceConfigurationInteractionInfo.put( "readTemperatureDisplayModeAttribute", @@ -4998,7 +4996,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThermostatUserInterfaceConfigurationCluster) cluster) .readKeypadLockoutAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatUserInterfaceConfigurationKeypadLockoutCommandParams); readThermostatUserInterfaceConfigurationInteractionInfo.put( "readKeypadLockoutAttribute", @@ -5014,7 +5012,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readScheduleProgrammingVisibilityAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatUserInterfaceConfigurationScheduleProgrammingVisibilityCommandParams); readThermostatUserInterfaceConfigurationInteractionInfo.put( "readScheduleProgrammingVisibilityAttribute", @@ -5030,7 +5028,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readClusterRevisionAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThermostatUserInterfaceConfigurationClusterRevisionCommandParams); readThermostatUserInterfaceConfigurationInteractionInfo.put( "readClusterRevisionAttribute", @@ -5048,7 +5046,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readChannelAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsChannelCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readChannelAttribute", readThreadNetworkDiagnosticsChannelAttributeInteractionInfo); @@ -5060,7 +5058,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRoutingRoleAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsRoutingRoleCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRoutingRoleAttribute", @@ -5073,7 +5071,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readNetworkNameAttribute((ChipClusters.OctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedOctetStringAttributeCallback(), readThreadNetworkDiagnosticsNetworkNameCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readNetworkNameAttribute", @@ -5086,7 +5084,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readPanIdAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsPanIdCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readPanIdAttribute", readThreadNetworkDiagnosticsPanIdAttributeInteractionInfo); @@ -5098,7 +5096,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readExtendedPanIdAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsExtendedPanIdCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readExtendedPanIdAttribute", @@ -5112,7 +5110,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readMeshLocalPrefixAttribute( (ChipClusters.OctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedOctetStringAttributeCallback(), readThreadNetworkDiagnosticsMeshLocalPrefixCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readMeshLocalPrefixAttribute", @@ -5125,7 +5123,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readOverrunCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsOverrunCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readOverrunCountAttribute", @@ -5141,7 +5139,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .NeighborTableListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedNeighborTableListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedNeighborTableListAttributeCallback(), readThreadNetworkDiagnosticsNeighborTableListCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readNeighborTableListAttribute", @@ -5156,7 +5154,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback (ChipClusters.ThreadNetworkDiagnosticsCluster.RouteTableListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedRouteTableListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedRouteTableListAttributeCallback(), readThreadNetworkDiagnosticsRouteTableListCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRouteTableListAttribute", @@ -5169,7 +5167,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readPartitionIdAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsPartitionIdCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readPartitionIdAttribute", @@ -5182,7 +5180,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readWeightingAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsWeightingCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readWeightingAttribute", readThreadNetworkDiagnosticsWeightingAttributeInteractionInfo); @@ -5194,7 +5192,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readDataVersionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsDataVersionCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readDataVersionAttribute", @@ -5207,7 +5205,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readStableDataVersionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsStableDataVersionCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readStableDataVersionAttribute", @@ -5220,7 +5218,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readLeaderRouterIdAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsLeaderRouterIdCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readLeaderRouterIdAttribute", @@ -5233,7 +5231,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readDetachedRoleCountAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsDetachedRoleCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readDetachedRoleCountAttribute", @@ -5246,7 +5244,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readChildRoleCountAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsChildRoleCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readChildRoleCountAttribute", @@ -5259,7 +5257,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRouterRoleCountAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsRouterRoleCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRouterRoleCountAttribute", @@ -5272,7 +5270,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readLeaderRoleCountAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsLeaderRoleCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readLeaderRoleCountAttribute", @@ -5286,7 +5284,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readAttachAttemptCountAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsAttachAttemptCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readAttachAttemptCountAttribute", @@ -5301,7 +5299,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readPartitionIdChangeCountAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsPartitionIdChangeCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readPartitionIdChangeCountAttribute", @@ -5317,7 +5315,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readBetterPartitionAttachAttemptCountAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsBetterPartitionAttachAttemptCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readBetterPartitionAttachAttemptCountAttribute", @@ -5330,7 +5328,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readParentChangeCountAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsParentChangeCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readParentChangeCountAttribute", @@ -5343,7 +5341,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxTotalCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxTotalCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxTotalCountAttribute", @@ -5356,7 +5354,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxUnicastCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxUnicastCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxUnicastCountAttribute", @@ -5369,7 +5367,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxBroadcastCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxBroadcastCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxBroadcastCountAttribute", @@ -5382,7 +5380,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxAckRequestedCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxAckRequestedCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxAckRequestedCountAttribute", @@ -5395,7 +5393,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxAckedCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxAckedCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxAckedCountAttribute", @@ -5410,7 +5408,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readTxNoAckRequestedCountAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxNoAckRequestedCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxNoAckRequestedCountAttribute", @@ -5423,7 +5421,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxDataCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxDataCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxDataCountAttribute", @@ -5436,7 +5434,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxDataPollCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxDataPollCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxDataPollCountAttribute", @@ -5449,7 +5447,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxBeaconCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxBeaconCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxBeaconCountAttribute", @@ -5463,7 +5461,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxBeaconRequestCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxBeaconRequestCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxBeaconRequestCountAttribute", @@ -5476,7 +5474,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxOtherCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxOtherCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxOtherCountAttribute", @@ -5489,7 +5487,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxRetryCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxRetryCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxRetryCountAttribute", @@ -5505,7 +5503,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readTxDirectMaxRetryExpiryCountAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxDirectMaxRetryExpiryCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxDirectMaxRetryExpiryCountAttribute", @@ -5521,7 +5519,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readTxIndirectMaxRetryExpiryCountAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxIndirectMaxRetryExpiryCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxIndirectMaxRetryExpiryCountAttribute", @@ -5534,7 +5532,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxErrCcaCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxErrCcaCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxErrCcaCountAttribute", @@ -5547,7 +5545,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readTxErrAbortCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxErrAbortCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxErrAbortCountAttribute", @@ -5562,7 +5560,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readTxErrBusyChannelCountAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsTxErrBusyChannelCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readTxErrBusyChannelCountAttribute", @@ -5575,7 +5573,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxTotalCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxTotalCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxTotalCountAttribute", @@ -5588,7 +5586,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxUnicastCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxUnicastCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxUnicastCountAttribute", @@ -5601,7 +5599,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxBroadcastCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxBroadcastCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxBroadcastCountAttribute", @@ -5614,7 +5612,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxDataCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxDataCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxDataCountAttribute", @@ -5627,7 +5625,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxDataPollCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxDataPollCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxDataPollCountAttribute", @@ -5640,7 +5638,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxBeaconCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxBeaconCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxBeaconCountAttribute", @@ -5654,7 +5652,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxBeaconRequestCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxBeaconRequestCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxBeaconRequestCountAttribute", @@ -5667,7 +5665,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxOtherCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxOtherCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxOtherCountAttribute", @@ -5682,7 +5680,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readRxAddressFilteredCountAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxAddressFilteredCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxAddressFilteredCountAttribute", @@ -5697,7 +5695,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readRxDestAddrFilteredCountAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxDestAddrFilteredCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxDestAddrFilteredCountAttribute", @@ -5710,7 +5708,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxDuplicatedCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxDuplicatedCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxDuplicatedCountAttribute", @@ -5723,7 +5721,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxErrNoFrameCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxErrNoFrameCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxErrNoFrameCountAttribute", @@ -5738,7 +5736,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readRxErrUnknownNeighborCountAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxErrUnknownNeighborCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxErrUnknownNeighborCountAttribute", @@ -5753,7 +5751,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback .readRxErrInvalidSrcAddrCountAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxErrInvalidSrcAddrCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxErrInvalidSrcAddrCountAttribute", @@ -5766,7 +5764,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxErrSecCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxErrSecCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxErrSecCountAttribute", @@ -5779,7 +5777,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxErrFcsCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxErrFcsCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxErrFcsCountAttribute", @@ -5792,7 +5790,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readRxErrOtherCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsRxErrOtherCountCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readRxErrOtherCountAttribute", @@ -5805,7 +5803,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readActiveTimestampAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsActiveTimestampCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readActiveTimestampAttribute", @@ -5818,7 +5816,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readPendingTimestampAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsPendingTimestampCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readPendingTimestampAttribute", @@ -5831,7 +5829,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readDelayAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readThreadNetworkDiagnosticsDelayCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readDelayAttribute", readThreadNetworkDiagnosticsDelayAttributeInteractionInfo); @@ -5845,7 +5843,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback (ChipClusters.ThreadNetworkDiagnosticsCluster.SecurityPolicyAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedSecurityPolicyAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedSecurityPolicyAttributeCallback(), readThreadNetworkDiagnosticsSecurityPolicyCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readSecurityPolicyAttribute", @@ -5858,7 +5856,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readChannelMaskAttribute((ChipClusters.OctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedOctetStringAttributeCallback(), readThreadNetworkDiagnosticsChannelMaskCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readChannelMaskAttribute", @@ -5877,7 +5875,7 @@ clusterInfoMapping.new DelegatedListNullablesAndOptionalsStructAttributeCallback callback); }, () -> - clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), + new ClusterInfoMapping.DelegatedOperationalDatasetComponentsAttributeCallback(), readThreadNetworkDiagnosticsOperationalDatasetComponentsCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readOperationalDatasetComponentsAttribute", @@ -5894,7 +5892,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .ActiveNetworkFaultsListAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedActiveNetworkFaultsListAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedActiveNetworkFaultsListAttributeCallback(), readThreadNetworkDiagnosticsActiveNetworkFaultsListCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readActiveNetworkFaultsListAttribute", @@ -5907,7 +5905,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.ThreadNetworkDiagnosticsCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readThreadNetworkDiagnosticsClusterRevisionCommandParams); readThreadNetworkDiagnosticsInteractionInfo.put( "readClusterRevisionAttribute", @@ -5923,7 +5921,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readWakeOnLanMacAddressAttribute( (ChipClusters.CharStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedCharStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedCharStringAttributeCallback(), readWakeOnLanWakeOnLanMacAddressCommandParams); readWakeOnLanInteractionInfo.put( "readWakeOnLanMacAddressAttribute", @@ -5936,7 +5934,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WakeOnLanCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWakeOnLanClusterRevisionCommandParams); readWakeOnLanInteractionInfo.put( "readClusterRevisionAttribute", readWakeOnLanClusterRevisionAttributeInteractionInfo); @@ -5950,7 +5948,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readBssidAttribute((ChipClusters.OctetStringAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedOctetStringAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedOctetStringAttributeCallback(), readWiFiNetworkDiagnosticsBssidCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readBssidAttribute", readWiFiNetworkDiagnosticsBssidAttributeInteractionInfo); @@ -5962,7 +5960,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readSecurityTypeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWiFiNetworkDiagnosticsSecurityTypeCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readSecurityTypeAttribute", @@ -5975,7 +5973,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readWiFiVersionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWiFiNetworkDiagnosticsWiFiVersionCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readWiFiVersionAttribute", readWiFiNetworkDiagnosticsWiFiVersionAttributeInteractionInfo); @@ -5987,7 +5985,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readChannelNumberAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWiFiNetworkDiagnosticsChannelNumberCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readChannelNumberAttribute", @@ -6000,7 +5998,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readRssiAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWiFiNetworkDiagnosticsRssiCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readRssiAttribute", readWiFiNetworkDiagnosticsRssiAttributeInteractionInfo); @@ -6012,7 +6010,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readBeaconLostCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readWiFiNetworkDiagnosticsBeaconLostCountCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readBeaconLostCountAttribute", @@ -6025,7 +6023,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readBeaconRxCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readWiFiNetworkDiagnosticsBeaconRxCountCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readBeaconRxCountAttribute", @@ -6040,7 +6038,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readPacketMulticastRxCountAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readWiFiNetworkDiagnosticsPacketMulticastRxCountCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readPacketMulticastRxCountAttribute", @@ -6055,7 +6053,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readPacketMulticastTxCountAttribute( (ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readWiFiNetworkDiagnosticsPacketMulticastTxCountCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readPacketMulticastTxCountAttribute", @@ -6068,7 +6066,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readPacketUnicastRxCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readWiFiNetworkDiagnosticsPacketUnicastRxCountCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readPacketUnicastRxCountAttribute", @@ -6081,7 +6079,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readPacketUnicastTxCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readWiFiNetworkDiagnosticsPacketUnicastTxCountCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readPacketUnicastTxCountAttribute", @@ -6094,7 +6092,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readCurrentMaxRateAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readWiFiNetworkDiagnosticsCurrentMaxRateCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readCurrentMaxRateAttribute", @@ -6107,7 +6105,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readOverrunCountAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readWiFiNetworkDiagnosticsOverrunCountCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readOverrunCountAttribute", @@ -6120,7 +6118,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WiFiNetworkDiagnosticsCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWiFiNetworkDiagnosticsClusterRevisionCommandParams); readWiFiNetworkDiagnosticsInteractionInfo.put( "readClusterRevisionAttribute", @@ -6135,7 +6133,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WindowCoveringCluster) cluster) .readTypeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringTypeCommandParams); readWindowCoveringInteractionInfo.put( "readTypeAttribute", readWindowCoveringTypeAttributeInteractionInfo); @@ -6148,7 +6146,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readCurrentPositionLiftAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringCurrentPositionLiftCommandParams); readWindowCoveringInteractionInfo.put( "readCurrentPositionLiftAttribute", @@ -6162,7 +6160,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readCurrentPositionTiltAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringCurrentPositionTiltCommandParams); readWindowCoveringInteractionInfo.put( "readCurrentPositionTiltAttribute", @@ -6175,7 +6173,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WindowCoveringCluster) cluster) .readConfigStatusAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringConfigStatusCommandParams); readWindowCoveringInteractionInfo.put( "readConfigStatusAttribute", readWindowCoveringConfigStatusAttributeInteractionInfo); @@ -6188,7 +6186,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readCurrentPositionLiftPercentageAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringCurrentPositionLiftPercentageCommandParams); readWindowCoveringInteractionInfo.put( "readCurrentPositionLiftPercentageAttribute", @@ -6202,7 +6200,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readCurrentPositionTiltPercentageAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringCurrentPositionTiltPercentageCommandParams); readWindowCoveringInteractionInfo.put( "readCurrentPositionTiltPercentageAttribute", @@ -6215,7 +6213,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WindowCoveringCluster) cluster) .readOperationalStatusAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringOperationalStatusCommandParams); readWindowCoveringInteractionInfo.put( "readOperationalStatusAttribute", @@ -6230,7 +6228,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readTargetPositionLiftPercent100thsAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringTargetPositionLiftPercent100thsCommandParams); readWindowCoveringInteractionInfo.put( "readTargetPositionLiftPercent100thsAttribute", @@ -6245,7 +6243,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readTargetPositionTiltPercent100thsAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringTargetPositionTiltPercent100thsCommandParams); readWindowCoveringInteractionInfo.put( "readTargetPositionTiltPercent100thsAttribute", @@ -6258,7 +6256,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WindowCoveringCluster) cluster) .readEndProductTypeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringEndProductTypeCommandParams); readWindowCoveringInteractionInfo.put( "readEndProductTypeAttribute", readWindowCoveringEndProductTypeAttributeInteractionInfo); @@ -6272,7 +6270,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readCurrentPositionLiftPercent100thsAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringCurrentPositionLiftPercent100thsCommandParams); readWindowCoveringInteractionInfo.put( "readCurrentPositionLiftPercent100thsAttribute", @@ -6287,7 +6285,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readCurrentPositionTiltPercent100thsAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringCurrentPositionTiltPercent100thsCommandParams); readWindowCoveringInteractionInfo.put( "readCurrentPositionTiltPercent100thsAttribute", @@ -6301,7 +6299,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readInstalledOpenLimitLiftAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringInstalledOpenLimitLiftCommandParams); readWindowCoveringInteractionInfo.put( "readInstalledOpenLimitLiftAttribute", @@ -6315,7 +6313,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readInstalledClosedLimitLiftAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringInstalledClosedLimitLiftCommandParams); readWindowCoveringInteractionInfo.put( "readInstalledClosedLimitLiftAttribute", @@ -6329,7 +6327,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readInstalledOpenLimitTiltAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringInstalledOpenLimitTiltCommandParams); readWindowCoveringInteractionInfo.put( "readInstalledOpenLimitTiltAttribute", @@ -6343,7 +6341,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), .readInstalledClosedLimitTiltAttribute( (ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringInstalledClosedLimitTiltCommandParams); readWindowCoveringInteractionInfo.put( "readInstalledClosedLimitTiltAttribute", @@ -6356,7 +6354,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WindowCoveringCluster) cluster) .readModeAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringModeCommandParams); readWindowCoveringInteractionInfo.put( "readModeAttribute", readWindowCoveringModeAttributeInteractionInfo); @@ -6368,7 +6366,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WindowCoveringCluster) cluster) .readSafetyStatusAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringSafetyStatusCommandParams); readWindowCoveringInteractionInfo.put( "readSafetyStatusAttribute", readWindowCoveringSafetyStatusAttributeInteractionInfo); @@ -6380,7 +6378,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WindowCoveringCluster) cluster) .readFeatureMapAttribute((ChipClusters.LongAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedLongAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedLongAttributeCallback(), readWindowCoveringFeatureMapCommandParams); readWindowCoveringInteractionInfo.put( "readFeatureMapAttribute", readWindowCoveringFeatureMapAttributeInteractionInfo); @@ -6392,7 +6390,7 @@ clusterInfoMapping.new DelegatedOperationalDatasetComponentsAttributeCallback(), ((ChipClusters.WindowCoveringCluster) cluster) .readClusterRevisionAttribute((ChipClusters.IntegerAttributeCallback) callback); }, - () -> clusterInfoMapping.new DelegatedIntegerAttributeCallback(), + () -> new ClusterInfoMapping.DelegatedIntegerAttributeCallback(), readWindowCoveringClusterRevisionCommandParams); readWindowCoveringInteractionInfo.put( "readClusterRevisionAttribute", readWindowCoveringClusterRevisionAttributeInteractionInfo); diff --git a/src/controller/java/zap-generated/chip/devicecontroller/ClusterWriteMapping.java b/src/controller/java/zap-generated/chip/devicecontroller/ClusterWriteMapping.java index b11df888f11365..df210803374a28 100644 --- a/src/controller/java/zap-generated/chip/devicecontroller/ClusterWriteMapping.java +++ b/src/controller/java/zap-generated/chip/devicecontroller/ClusterWriteMapping.java @@ -28,7 +28,6 @@ public class ClusterWriteMapping { public Map> getWriteAttributeMap() { - ClusterInfoMapping clusterInfoMapping = new ClusterInfoMapping(); Map> writeAttributeMap = new HashMap<>(); Map writeAccountLoginInteractionInfo = new LinkedHashMap<>(); writeAttributeMap.put("accountLogin", writeAccountLoginInteractionInfo); @@ -57,7 +56,7 @@ public Map> getWriteAttributeMap() { .writeUserLabelAttribute( (DefaultClusterCallback) callback, (String) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeBasicUserLabelCommandParams); writeBasicInteractionInfo.put( "writeUserLabelAttribute", writeBasicUserLabelAttributeInteractionInfo); @@ -73,7 +72,7 @@ public Map> getWriteAttributeMap() { .writeLocationAttribute( (DefaultClusterCallback) callback, (String) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeBasicLocationCommandParams); writeBasicInteractionInfo.put( "writeLocationAttribute", writeBasicLocationAttributeInteractionInfo); @@ -90,7 +89,7 @@ public Map> getWriteAttributeMap() { .writeLocalConfigDisabledAttribute( (DefaultClusterCallback) callback, (Boolean) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeBasicLocalConfigDisabledCommandParams); writeBasicInteractionInfo.put( "writeLocalConfigDisabledAttribute", writeBasicLocalConfigDisabledAttributeInteractionInfo); @@ -109,7 +108,7 @@ public Map> getWriteAttributeMap() { .writeOutOfServiceAttribute( (DefaultClusterCallback) callback, (Boolean) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeBinaryInputBasicOutOfServiceCommandParams); writeBinaryInputBasicInteractionInfo.put( "writeOutOfServiceAttribute", writeBinaryInputBasicOutOfServiceAttributeInteractionInfo); @@ -126,7 +125,7 @@ public Map> getWriteAttributeMap() { .writePresentValueAttribute( (DefaultClusterCallback) callback, (Boolean) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeBinaryInputBasicPresentValueCommandParams); writeBinaryInputBasicInteractionInfo.put( "writePresentValueAttribute", writeBinaryInputBasicPresentValueAttributeInteractionInfo); @@ -151,7 +150,7 @@ public Map> getWriteAttributeMap() { .writeUserLabelAttribute( (DefaultClusterCallback) callback, (String) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeBridgedDeviceBasicUserLabelCommandParams); writeBridgedDeviceBasicInteractionInfo.put( "writeUserLabelAttribute", writeBridgedDeviceBasicUserLabelAttributeInteractionInfo); @@ -170,7 +169,7 @@ public Map> getWriteAttributeMap() { .writeColorControlOptionsAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlColorControlOptionsCommandParams); writeColorControlInteractionInfo.put( "writeColorControlOptionsAttribute", @@ -188,7 +187,7 @@ public Map> getWriteAttributeMap() { .writeWhitePointXAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlWhitePointXCommandParams); writeColorControlInteractionInfo.put( "writeWhitePointXAttribute", writeColorControlWhitePointXAttributeInteractionInfo); @@ -205,7 +204,7 @@ public Map> getWriteAttributeMap() { .writeWhitePointYAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlWhitePointYCommandParams); writeColorControlInteractionInfo.put( "writeWhitePointYAttribute", writeColorControlWhitePointYAttributeInteractionInfo); @@ -222,7 +221,7 @@ public Map> getWriteAttributeMap() { .writeColorPointRXAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlColorPointRXCommandParams); writeColorControlInteractionInfo.put( "writeColorPointRXAttribute", writeColorControlColorPointRXAttributeInteractionInfo); @@ -239,7 +238,7 @@ public Map> getWriteAttributeMap() { .writeColorPointRYAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlColorPointRYCommandParams); writeColorControlInteractionInfo.put( "writeColorPointRYAttribute", writeColorControlColorPointRYAttributeInteractionInfo); @@ -256,7 +255,7 @@ public Map> getWriteAttributeMap() { .writeColorPointRIntensityAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlColorPointRIntensityCommandParams); writeColorControlInteractionInfo.put( "writeColorPointRIntensityAttribute", @@ -274,7 +273,7 @@ public Map> getWriteAttributeMap() { .writeColorPointGXAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlColorPointGXCommandParams); writeColorControlInteractionInfo.put( "writeColorPointGXAttribute", writeColorControlColorPointGXAttributeInteractionInfo); @@ -291,7 +290,7 @@ public Map> getWriteAttributeMap() { .writeColorPointGYAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlColorPointGYCommandParams); writeColorControlInteractionInfo.put( "writeColorPointGYAttribute", writeColorControlColorPointGYAttributeInteractionInfo); @@ -308,7 +307,7 @@ public Map> getWriteAttributeMap() { .writeColorPointGIntensityAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlColorPointGIntensityCommandParams); writeColorControlInteractionInfo.put( "writeColorPointGIntensityAttribute", @@ -326,7 +325,7 @@ public Map> getWriteAttributeMap() { .writeColorPointBXAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlColorPointBXCommandParams); writeColorControlInteractionInfo.put( "writeColorPointBXAttribute", writeColorControlColorPointBXAttributeInteractionInfo); @@ -343,7 +342,7 @@ public Map> getWriteAttributeMap() { .writeColorPointBYAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlColorPointBYCommandParams); writeColorControlInteractionInfo.put( "writeColorPointBYAttribute", writeColorControlColorPointBYAttributeInteractionInfo); @@ -360,7 +359,7 @@ public Map> getWriteAttributeMap() { .writeColorPointBIntensityAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlColorPointBIntensityCommandParams); writeColorControlInteractionInfo.put( "writeColorPointBIntensityAttribute", @@ -378,7 +377,7 @@ public Map> getWriteAttributeMap() { .writeStartUpColorTemperatureMiredsAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeColorControlStartUpColorTemperatureMiredsCommandParams); writeColorControlInteractionInfo.put( "writeStartUpColorTemperatureMiredsAttribute", @@ -416,7 +415,7 @@ public Map> getWriteAttributeMap() { .writeBreadcrumbAttribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeGeneralCommissioningBreadcrumbCommandParams); writeGeneralCommissioningInteractionInfo.put( "writeBreadcrumbAttribute", writeGeneralCommissioningBreadcrumbAttributeInteractionInfo); @@ -440,7 +439,7 @@ public Map> getWriteAttributeMap() { .writeIdentifyTimeAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeIdentifyIdentifyTimeCommandParams); writeIdentifyInteractionInfo.put( "writeIdentifyTimeAttribute", writeIdentifyIdentifyTimeAttributeInteractionInfo); @@ -462,7 +461,7 @@ public Map> getWriteAttributeMap() { .writeOptionsAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeLevelControlOptionsCommandParams); writeLevelControlInteractionInfo.put( "writeOptionsAttribute", writeLevelControlOptionsAttributeInteractionInfo); @@ -479,7 +478,7 @@ public Map> getWriteAttributeMap() { .writeOnOffTransitionTimeAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeLevelControlOnOffTransitionTimeCommandParams); writeLevelControlInteractionInfo.put( "writeOnOffTransitionTimeAttribute", @@ -496,7 +495,7 @@ public Map> getWriteAttributeMap() { .writeOnLevelAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeLevelControlOnLevelCommandParams); writeLevelControlInteractionInfo.put( "writeOnLevelAttribute", writeLevelControlOnLevelAttributeInteractionInfo); @@ -513,7 +512,7 @@ public Map> getWriteAttributeMap() { .writeOnTransitionTimeAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeLevelControlOnTransitionTimeCommandParams); writeLevelControlInteractionInfo.put( "writeOnTransitionTimeAttribute", @@ -531,7 +530,7 @@ public Map> getWriteAttributeMap() { .writeOffTransitionTimeAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeLevelControlOffTransitionTimeCommandParams); writeLevelControlInteractionInfo.put( "writeOffTransitionTimeAttribute", @@ -549,7 +548,7 @@ public Map> getWriteAttributeMap() { .writeDefaultMoveRateAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeLevelControlDefaultMoveRateCommandParams); writeLevelControlInteractionInfo.put( "writeDefaultMoveRateAttribute", writeLevelControlDefaultMoveRateAttributeInteractionInfo); @@ -566,7 +565,7 @@ public Map> getWriteAttributeMap() { .writeStartUpCurrentLevelAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeLevelControlStartUpCurrentLevelCommandParams); writeLevelControlInteractionInfo.put( "writeStartUpCurrentLevelAttribute", @@ -591,7 +590,7 @@ public Map> getWriteAttributeMap() { .writeOnModeAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeModeSelectOnModeCommandParams); writeModeSelectInteractionInfo.put( "writeOnModeAttribute", writeModeSelectOnModeAttributeInteractionInfo); @@ -618,7 +617,7 @@ public Map> getWriteAttributeMap() { .writeDefaultOtaProviderAttribute( (DefaultClusterCallback) callback, (byte[]) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeOtaSoftwareUpdateRequestorDefaultOtaProviderCommandParams); writeOtaSoftwareUpdateRequestorInteractionInfo.put( "writeDefaultOtaProviderAttribute", @@ -640,7 +639,7 @@ public Map> getWriteAttributeMap() { .writeOnTimeAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeOnOffOnTimeCommandParams); writeOnOffInteractionInfo.put("writeOnTimeAttribute", writeOnOffOnTimeAttributeInteractionInfo); Map writeOnOffOffWaitTimeCommandParams = @@ -655,7 +654,7 @@ public Map> getWriteAttributeMap() { .writeOffWaitTimeAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeOnOffOffWaitTimeCommandParams); writeOnOffInteractionInfo.put( "writeOffWaitTimeAttribute", writeOnOffOffWaitTimeAttributeInteractionInfo); @@ -671,7 +670,7 @@ public Map> getWriteAttributeMap() { .writeStartUpOnOffAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeOnOffStartUpOnOffCommandParams); writeOnOffInteractionInfo.put( "writeStartUpOnOffAttribute", writeOnOffStartUpOnOffAttributeInteractionInfo); @@ -691,7 +690,7 @@ public Map> getWriteAttributeMap() { .writeSwitchActionsAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeOnOffSwitchConfigurationSwitchActionsCommandParams); writeOnOffSwitchConfigurationInteractionInfo.put( "writeSwitchActionsAttribute", @@ -718,7 +717,7 @@ public Map> getWriteAttributeMap() { .writeOperationModeAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writePumpConfigurationAndControlOperationModeCommandParams); writePumpConfigurationAndControlInteractionInfo.put( "writeOperationModeAttribute", @@ -736,7 +735,7 @@ public Map> getWriteAttributeMap() { .writeControlModeAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writePumpConfigurationAndControlControlModeCommandParams); writePumpConfigurationAndControlInteractionInfo.put( "writeControlModeAttribute", @@ -772,7 +771,7 @@ public Map> getWriteAttributeMap() { .writeBooleanAttribute( (DefaultClusterCallback) callback, (Boolean) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterBooleanCommandParams); writeTestClusterInteractionInfo.put( "writeBooleanAttribute", writeTestClusterBooleanAttributeInteractionInfo); @@ -788,7 +787,7 @@ public Map> getWriteAttributeMap() { .writeBitmap8Attribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterBitmap8CommandParams); writeTestClusterInteractionInfo.put( "writeBitmap8Attribute", writeTestClusterBitmap8AttributeInteractionInfo); @@ -804,7 +803,7 @@ public Map> getWriteAttributeMap() { .writeBitmap16Attribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterBitmap16CommandParams); writeTestClusterInteractionInfo.put( "writeBitmap16Attribute", writeTestClusterBitmap16AttributeInteractionInfo); @@ -820,7 +819,7 @@ public Map> getWriteAttributeMap() { .writeBitmap32Attribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterBitmap32CommandParams); writeTestClusterInteractionInfo.put( "writeBitmap32Attribute", writeTestClusterBitmap32AttributeInteractionInfo); @@ -836,7 +835,7 @@ public Map> getWriteAttributeMap() { .writeBitmap64Attribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterBitmap64CommandParams); writeTestClusterInteractionInfo.put( "writeBitmap64Attribute", writeTestClusterBitmap64AttributeInteractionInfo); @@ -852,7 +851,7 @@ public Map> getWriteAttributeMap() { .writeInt8uAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterInt8uCommandParams); writeTestClusterInteractionInfo.put( "writeInt8uAttribute", writeTestClusterInt8uAttributeInteractionInfo); @@ -868,7 +867,7 @@ public Map> getWriteAttributeMap() { .writeInt16uAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterInt16uCommandParams); writeTestClusterInteractionInfo.put( "writeInt16uAttribute", writeTestClusterInt16uAttributeInteractionInfo); @@ -884,7 +883,7 @@ public Map> getWriteAttributeMap() { .writeInt32uAttribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterInt32uCommandParams); writeTestClusterInteractionInfo.put( "writeInt32uAttribute", writeTestClusterInt32uAttributeInteractionInfo); @@ -900,7 +899,7 @@ public Map> getWriteAttributeMap() { .writeInt64uAttribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterInt64uCommandParams); writeTestClusterInteractionInfo.put( "writeInt64uAttribute", writeTestClusterInt64uAttributeInteractionInfo); @@ -916,7 +915,7 @@ public Map> getWriteAttributeMap() { .writeInt8sAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterInt8sCommandParams); writeTestClusterInteractionInfo.put( "writeInt8sAttribute", writeTestClusterInt8sAttributeInteractionInfo); @@ -932,7 +931,7 @@ public Map> getWriteAttributeMap() { .writeInt16sAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterInt16sCommandParams); writeTestClusterInteractionInfo.put( "writeInt16sAttribute", writeTestClusterInt16sAttributeInteractionInfo); @@ -948,7 +947,7 @@ public Map> getWriteAttributeMap() { .writeInt32sAttribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterInt32sCommandParams); writeTestClusterInteractionInfo.put( "writeInt32sAttribute", writeTestClusterInt32sAttributeInteractionInfo); @@ -964,7 +963,7 @@ public Map> getWriteAttributeMap() { .writeInt64sAttribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterInt64sCommandParams); writeTestClusterInteractionInfo.put( "writeInt64sAttribute", writeTestClusterInt64sAttributeInteractionInfo); @@ -980,7 +979,7 @@ public Map> getWriteAttributeMap() { .writeEnum8Attribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterEnum8CommandParams); writeTestClusterInteractionInfo.put( "writeEnum8Attribute", writeTestClusterEnum8AttributeInteractionInfo); @@ -996,7 +995,7 @@ public Map> getWriteAttributeMap() { .writeEnum16Attribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterEnum16CommandParams); writeTestClusterInteractionInfo.put( "writeEnum16Attribute", writeTestClusterEnum16AttributeInteractionInfo); @@ -1013,7 +1012,7 @@ public Map> getWriteAttributeMap() { .writeOctetStringAttribute( (DefaultClusterCallback) callback, (byte[]) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterOctetStringCommandParams); writeTestClusterInteractionInfo.put( "writeOctetStringAttribute", writeTestClusterOctetStringAttributeInteractionInfo); @@ -1030,7 +1029,7 @@ public Map> getWriteAttributeMap() { .writeLongOctetStringAttribute( (DefaultClusterCallback) callback, (byte[]) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterLongOctetStringCommandParams); writeTestClusterInteractionInfo.put( "writeLongOctetStringAttribute", writeTestClusterLongOctetStringAttributeInteractionInfo); @@ -1046,7 +1045,7 @@ public Map> getWriteAttributeMap() { .writeCharStringAttribute( (DefaultClusterCallback) callback, (String) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterCharStringCommandParams); writeTestClusterInteractionInfo.put( "writeCharStringAttribute", writeTestClusterCharStringAttributeInteractionInfo); @@ -1063,7 +1062,7 @@ public Map> getWriteAttributeMap() { .writeLongCharStringAttribute( (DefaultClusterCallback) callback, (String) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterLongCharStringCommandParams); writeTestClusterInteractionInfo.put( "writeLongCharStringAttribute", writeTestClusterLongCharStringAttributeInteractionInfo); @@ -1079,7 +1078,7 @@ public Map> getWriteAttributeMap() { .writeEpochUsAttribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterEpochUsCommandParams); writeTestClusterInteractionInfo.put( "writeEpochUsAttribute", writeTestClusterEpochUsAttributeInteractionInfo); @@ -1095,7 +1094,7 @@ public Map> getWriteAttributeMap() { .writeEpochSAttribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterEpochSCommandParams); writeTestClusterInteractionInfo.put( "writeEpochSAttribute", writeTestClusterEpochSAttributeInteractionInfo); @@ -1111,7 +1110,7 @@ public Map> getWriteAttributeMap() { .writeVendorIdAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterVendorIdCommandParams); writeTestClusterInteractionInfo.put( "writeVendorIdAttribute", writeTestClusterVendorIdAttributeInteractionInfo); @@ -1128,7 +1127,7 @@ public Map> getWriteAttributeMap() { .writeUnsupportedAttribute( (DefaultClusterCallback) callback, (Boolean) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterUnsupportedCommandParams); writeTestClusterInteractionInfo.put( "writeUnsupportedAttribute", writeTestClusterUnsupportedAttributeInteractionInfo); @@ -1145,7 +1144,7 @@ public Map> getWriteAttributeMap() { .writeNullableBooleanAttribute( (DefaultClusterCallback) callback, (Boolean) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableBooleanCommandParams); writeTestClusterInteractionInfo.put( "writeNullableBooleanAttribute", writeTestClusterNullableBooleanAttributeInteractionInfo); @@ -1162,7 +1161,7 @@ public Map> getWriteAttributeMap() { .writeNullableBitmap8Attribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableBitmap8CommandParams); writeTestClusterInteractionInfo.put( "writeNullableBitmap8Attribute", writeTestClusterNullableBitmap8AttributeInteractionInfo); @@ -1179,7 +1178,7 @@ public Map> getWriteAttributeMap() { .writeNullableBitmap16Attribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableBitmap16CommandParams); writeTestClusterInteractionInfo.put( "writeNullableBitmap16Attribute", writeTestClusterNullableBitmap16AttributeInteractionInfo); @@ -1196,7 +1195,7 @@ public Map> getWriteAttributeMap() { .writeNullableBitmap32Attribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableBitmap32CommandParams); writeTestClusterInteractionInfo.put( "writeNullableBitmap32Attribute", writeTestClusterNullableBitmap32AttributeInteractionInfo); @@ -1213,7 +1212,7 @@ public Map> getWriteAttributeMap() { .writeNullableBitmap64Attribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableBitmap64CommandParams); writeTestClusterInteractionInfo.put( "writeNullableBitmap64Attribute", writeTestClusterNullableBitmap64AttributeInteractionInfo); @@ -1230,7 +1229,7 @@ public Map> getWriteAttributeMap() { .writeNullableInt8uAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableInt8uCommandParams); writeTestClusterInteractionInfo.put( "writeNullableInt8uAttribute", writeTestClusterNullableInt8uAttributeInteractionInfo); @@ -1247,7 +1246,7 @@ public Map> getWriteAttributeMap() { .writeNullableInt16uAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableInt16uCommandParams); writeTestClusterInteractionInfo.put( "writeNullableInt16uAttribute", writeTestClusterNullableInt16uAttributeInteractionInfo); @@ -1264,7 +1263,7 @@ public Map> getWriteAttributeMap() { .writeNullableInt32uAttribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableInt32uCommandParams); writeTestClusterInteractionInfo.put( "writeNullableInt32uAttribute", writeTestClusterNullableInt32uAttributeInteractionInfo); @@ -1281,7 +1280,7 @@ public Map> getWriteAttributeMap() { .writeNullableInt64uAttribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableInt64uCommandParams); writeTestClusterInteractionInfo.put( "writeNullableInt64uAttribute", writeTestClusterNullableInt64uAttributeInteractionInfo); @@ -1298,7 +1297,7 @@ public Map> getWriteAttributeMap() { .writeNullableInt8sAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableInt8sCommandParams); writeTestClusterInteractionInfo.put( "writeNullableInt8sAttribute", writeTestClusterNullableInt8sAttributeInteractionInfo); @@ -1315,7 +1314,7 @@ public Map> getWriteAttributeMap() { .writeNullableInt16sAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableInt16sCommandParams); writeTestClusterInteractionInfo.put( "writeNullableInt16sAttribute", writeTestClusterNullableInt16sAttributeInteractionInfo); @@ -1332,7 +1331,7 @@ public Map> getWriteAttributeMap() { .writeNullableInt32sAttribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableInt32sCommandParams); writeTestClusterInteractionInfo.put( "writeNullableInt32sAttribute", writeTestClusterNullableInt32sAttributeInteractionInfo); @@ -1349,7 +1348,7 @@ public Map> getWriteAttributeMap() { .writeNullableInt64sAttribute( (DefaultClusterCallback) callback, (Long) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableInt64sCommandParams); writeTestClusterInteractionInfo.put( "writeNullableInt64sAttribute", writeTestClusterNullableInt64sAttributeInteractionInfo); @@ -1366,7 +1365,7 @@ public Map> getWriteAttributeMap() { .writeNullableEnum8Attribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableEnum8CommandParams); writeTestClusterInteractionInfo.put( "writeNullableEnum8Attribute", writeTestClusterNullableEnum8AttributeInteractionInfo); @@ -1383,7 +1382,7 @@ public Map> getWriteAttributeMap() { .writeNullableEnum16Attribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableEnum16CommandParams); writeTestClusterInteractionInfo.put( "writeNullableEnum16Attribute", writeTestClusterNullableEnum16AttributeInteractionInfo); @@ -1400,7 +1399,7 @@ public Map> getWriteAttributeMap() { .writeNullableOctetStringAttribute( (DefaultClusterCallback) callback, (byte[]) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableOctetStringCommandParams); writeTestClusterInteractionInfo.put( "writeNullableOctetStringAttribute", @@ -1418,7 +1417,7 @@ public Map> getWriteAttributeMap() { .writeNullableCharStringAttribute( (DefaultClusterCallback) callback, (String) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeTestClusterNullableCharStringCommandParams); writeTestClusterInteractionInfo.put( "writeNullableCharStringAttribute", @@ -1438,7 +1437,7 @@ public Map> getWriteAttributeMap() { .writeOccupiedCoolingSetpointAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatOccupiedCoolingSetpointCommandParams); writeThermostatInteractionInfo.put( "writeOccupiedCoolingSetpointAttribute", @@ -1456,7 +1455,7 @@ public Map> getWriteAttributeMap() { .writeOccupiedHeatingSetpointAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatOccupiedHeatingSetpointCommandParams); writeThermostatInteractionInfo.put( "writeOccupiedHeatingSetpointAttribute", @@ -1474,7 +1473,7 @@ public Map> getWriteAttributeMap() { .writeMinHeatSetpointLimitAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatMinHeatSetpointLimitCommandParams); writeThermostatInteractionInfo.put( "writeMinHeatSetpointLimitAttribute", @@ -1492,7 +1491,7 @@ public Map> getWriteAttributeMap() { .writeMaxHeatSetpointLimitAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatMaxHeatSetpointLimitCommandParams); writeThermostatInteractionInfo.put( "writeMaxHeatSetpointLimitAttribute", @@ -1510,7 +1509,7 @@ public Map> getWriteAttributeMap() { .writeMinCoolSetpointLimitAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatMinCoolSetpointLimitCommandParams); writeThermostatInteractionInfo.put( "writeMinCoolSetpointLimitAttribute", @@ -1528,7 +1527,7 @@ public Map> getWriteAttributeMap() { .writeMaxCoolSetpointLimitAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatMaxCoolSetpointLimitCommandParams); writeThermostatInteractionInfo.put( "writeMaxCoolSetpointLimitAttribute", @@ -1546,7 +1545,7 @@ public Map> getWriteAttributeMap() { .writeMinSetpointDeadBandAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatMinSetpointDeadBandCommandParams); writeThermostatInteractionInfo.put( "writeMinSetpointDeadBandAttribute", @@ -1564,7 +1563,7 @@ public Map> getWriteAttributeMap() { .writeControlSequenceOfOperationAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatControlSequenceOfOperationCommandParams); writeThermostatInteractionInfo.put( "writeControlSequenceOfOperationAttribute", @@ -1581,7 +1580,7 @@ public Map> getWriteAttributeMap() { .writeSystemModeAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatSystemModeCommandParams); writeThermostatInteractionInfo.put( "writeSystemModeAttribute", writeThermostatSystemModeAttributeInteractionInfo); @@ -1605,7 +1604,7 @@ public Map> getWriteAttributeMap() { (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatUserInterfaceConfigurationTemperatureDisplayModeCommandParams); writeThermostatUserInterfaceConfigurationInteractionInfo.put( "writeTemperatureDisplayModeAttribute", @@ -1624,7 +1623,7 @@ public Map> getWriteAttributeMap() { .writeKeypadLockoutAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatUserInterfaceConfigurationKeypadLockoutCommandParams); writeThermostatUserInterfaceConfigurationInteractionInfo.put( "writeKeypadLockoutAttribute", @@ -1647,7 +1646,7 @@ public Map> getWriteAttributeMap() { (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeThermostatUserInterfaceConfigurationScheduleProgrammingVisibilityCommandParams); writeThermostatUserInterfaceConfigurationInteractionInfo.put( "writeScheduleProgrammingVisibilityAttribute", @@ -1675,7 +1674,7 @@ public Map> getWriteAttributeMap() { .writeModeAttribute( (DefaultClusterCallback) callback, (Integer) commandArguments.get("value")); }, - () -> clusterInfoMapping.new DelegatedDefaultClusterCallback(), + () -> new ClusterInfoMapping.DelegatedDefaultClusterCallback(), writeWindowCoveringModeCommandParams); writeWindowCoveringInteractionInfo.put( "writeModeAttribute", writeWindowCoveringModeAttributeInteractionInfo);