Adjusting and cleaning up ZigbeeTest to install Vigilia ZigBee gateway and devices.
[iot2.git] / benchmarks / other / ZigbeeTest / IoTZigbeeMessage.java
diff --git a/benchmarks/other/ZigbeeTest/IoTZigbeeMessage.java b/benchmarks/other/ZigbeeTest/IoTZigbeeMessage.java
deleted file mode 100644 (file)
index c1df838..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-
-/** Zigbee Message generic class.
- *
- * @author      Ali Younis <ayounis @ uci.edu>
- * @version     1.0
- * @since       2016-04-19
- */
-public class IoTZigbeeMessage {
-
-       // private variables
-       private int packetId;
-
-       /**
-        * Constructor
-        */
-       public IoTZigbeeMessage(int _packetId) {
-               packetId = _packetId;
-       }
-
-
-       /**
-        * getPacketId() method that returns the packet id of the received message
-        *
-        * @return int
-        */
-       public int getPacketId() {
-               return packetId;
-       }
-
-}