Adjusting and cleaning up ZigbeeTest to install Vigilia ZigBee gateway and devices.
[iot2.git] / benchmarks / other / ZigbeeTest / IoTZigbeeMessageZdoBindResponse.java
diff --git a/benchmarks/other/ZigbeeTest/IoTZigbeeMessageZdoBindResponse.java b/benchmarks/other/ZigbeeTest/IoTZigbeeMessageZdoBindResponse.java
deleted file mode 100644 (file)
index f1d27d4..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-
-/** Zigbee Message Zdo Bind Response.
- *
- * @author      Ali Younis <ayounis @ uci.edu>
- * @version     1.0
- * @since       2016-04-19
- */
-public class IoTZigbeeMessageZdoBindResponse extends IoTZigbeeMessage {
-
-       // private variables
-       private boolean succeeded;
-       private String message;
-
-       /**
-        * Constructor
-        */
-       public IoTZigbeeMessageZdoBindResponse(int _packetId, boolean _succeded, String _message) {
-               super(_packetId);
-               message = _message;
-               succeeded = _succeded;
-       }
-
-       /**
-        * getSucceeded() method that returns the success status
-        *
-        * @return boolean
-        */
-       public boolean getSucceeded() {
-               return succeeded;
-       }
-
-       /**
-        * getMessage() method that returns the error message
-        *
-        * @return String
-        */
-       public String getMessage() {
-               return message;
-       }
-}