Adjusting and cleaning up ZigbeeTest to install Vigilia ZigBee gateway and devices.
[iot2.git] / benchmarks / other / ZigbeeTest / IoTZigbeeMessageZclReportAttributes.java
diff --git a/benchmarks/other/ZigbeeTest/IoTZigbeeMessageZclReportAttributes.java b/benchmarks/other/ZigbeeTest/IoTZigbeeMessageZclReportAttributes.java
deleted file mode 100644 (file)
index de1bfd0..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-
-import java.util.List;
-
-/** Zigbee Message Zcl Report Attributes.
- *
- * @author      Ali Younis <ayounis @ uci.edu>
- * @version     1.0
- * @since       2016-04-19
- */
-public class IoTZigbeeMessageZclReportAttributes extends IoTZigbeeMessage {
-
-       static public class Attribute {
-
-               // private variables
-               private int attributeId;
-               private int dataType;
-               private byte[] data;
-
-               /**
-                * Constructor
-                */
-               public Attribute(int _attributeId, int _dataType, byte[] _data) {
-                       attributeId = _attributeId;
-                       dataType = _dataType;
-                       data = _data;
-               }
-
-               /**
-                * getAttributeId() method that returns attribute id
-                *
-                * @return int
-                */
-               public int getAttributeId() {
-                       return attributeId;
-               }
-
-
-               /**
-                * getDataType() method that returns attribute data type
-                *
-                * @return int
-                */
-               public int getDataType() {
-                       return dataType;
-               }
-
-
-               /**
-                * getData() method that returns attribute data
-                *
-                * @return byte[]
-                */
-               public byte[] getData() {
-                       return data;
-               }
-
-       }
-
-       // private variables
-       private int clusterId;
-       private int profileId;
-       private List <Attribute> attributes;
-
-       /**
-        * Constructor
-        */
-       public IoTZigbeeMessageZclReportAttributes(int _packetId, int _clusterId, int _profileId, List <Attribute> _attributes) {
-               super(_packetId);
-
-               clusterId = _clusterId;
-               profileId = _profileId;
-               attributes = _attributes;
-       }
-
-       /**
-        * getClusterId() method that returns the cluster id
-        *
-        * @return int
-        */
-       public int getClusterId() {
-               return clusterId;
-       }
-
-       /**
-        * getProfileId() method that returns the profile id
-        *
-        * @return int
-        */
-       public int getProfileId() {
-               return profileId;
-       }
-
-       /**
-        * getAttributes() method that returns all attributes data
-        *
-        * @return List <Attribute>
-        */
-       public List <Attribute> getAttributes() {
-               return attributes;
-       }
-}