|
| 1 | +/** |
| 2 | + * Copyright (c) 2016-2024 by the respective copyright holders. |
| 3 | + * All rights reserved. This program and the accompanying materials |
| 4 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 5 | + * which accompanies this distribution, and is available at |
| 6 | + * http://www.eclipse.org/legal/epl-v10.html |
| 7 | + */ |
| 8 | +package com.zsmartsystems.zigbee.zcl.clusters; |
| 9 | + |
| 10 | +import java.util.Map; |
| 11 | +import java.util.concurrent.ConcurrentSkipListMap; |
| 12 | + |
| 13 | +import javax.annotation.Generated; |
| 14 | + |
| 15 | +import com.zsmartsystems.zigbee.ZigBeeEndpoint; |
| 16 | +import com.zsmartsystems.zigbee.zcl.ZclAttribute; |
| 17 | +import com.zsmartsystems.zigbee.zcl.ZclCluster; |
| 18 | + |
| 19 | +/** |
| 20 | + * <b>Light Link Commissioning</b> cluster implementation (<i>Cluster ID 0x1000</i>). |
| 21 | + * <p> |
| 22 | + * Cluster used for commissioning ZLL devices, including touchlinking and network |
| 23 | + * management. |
| 24 | + * <p> |
| 25 | + * Code is auto-generated. Modifications may be overwritten! |
| 26 | + */ |
| 27 | +@Generated(value = "com.zsmartsystems.zigbee.autocode.ZigBeeCodeGenerator", date = "2024-11-19T22:12:16Z") |
| 28 | +public class ZclLightLinkCommissioningCluster extends ZclCluster { |
| 29 | + /** |
| 30 | + * The ZigBee Cluster Library Cluster ID |
| 31 | + */ |
| 32 | + public static final int CLUSTER_ID = 0x1000; |
| 33 | + |
| 34 | + /** |
| 35 | + * The ZigBee Cluster Library Cluster Name |
| 36 | + */ |
| 37 | + public static final String CLUSTER_NAME = "Light Link Commissioning"; |
| 38 | + |
| 39 | + @Override |
| 40 | + protected Map<Integer, ZclAttribute> initializeClientAttributes() { |
| 41 | + Map<Integer, ZclAttribute> attributeMap = super.initializeClientAttributes(); |
| 42 | + |
| 43 | + return attributeMap; |
| 44 | + } |
| 45 | + |
| 46 | + @Override |
| 47 | + protected Map<Integer, ZclAttribute> initializeServerAttributes() { |
| 48 | + Map<Integer, ZclAttribute> attributeMap = super.initializeServerAttributes(); |
| 49 | + |
| 50 | + return attributeMap; |
| 51 | + } |
| 52 | + |
| 53 | + |
| 54 | + /** |
| 55 | + * Default constructor to create a Light Link Commissioning cluster. |
| 56 | + * |
| 57 | + * @param zigbeeEndpoint the {@link ZigBeeEndpoint} this cluster is contained within |
| 58 | + */ |
| 59 | + public ZclLightLinkCommissioningCluster(final ZigBeeEndpoint zigbeeEndpoint) { |
| 60 | + super(zigbeeEndpoint, CLUSTER_ID, CLUSTER_NAME); |
| 61 | + } |
| 62 | +} |
0 commit comments