Adjusting and cleaning up ZigbeeTest to install Vigilia ZigBee gateway and devices.
[iot2.git] / benchmarks / other / ZigbeeTest / IoTZigbeeMessageZclChangeSwitchResponse.java
diff --git a/benchmarks/other/ZigbeeTest/IoTZigbeeMessageZclChangeSwitchResponse.java b/benchmarks/other/ZigbeeTest/IoTZigbeeMessageZclChangeSwitchResponse.java
deleted file mode 100644 (file)
index 0071d22..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/** Zigbee Message Zcl Change Switch Response
- *
- * @author      Yuting Tan <ytan5 @ uci.edu>
- * @version     1.0
- * @since       2017-2-28
- */
-public class IoTZigbeeMessageZclChangeSwitchResponse extends IoTZigbeeMessage {
-
-       private boolean SuccessOrFail=false;
-       private int clusterId;
-       private int profileId;
-       private int status;
-
-       public IoTZigbeeMessageZclChangeSwitchResponse(int _packetId, int _clusterId, int _profileId, int _status, boolean _SuccessOrFail){
-               super(_packetId);
-
-               clusterId = _clusterId;
-               profileId = _profileId;
-               status = _status;
-               SuccessOrFail = _SuccessOrFail;
-       }
-       public boolean getSuccessOrFail(){
-               return SuccessOrFail;
-       }
-
-       public int getClusterId() {
-               return clusterId;
-       }
-
-       public int getProfileId() {
-               return profileId;
-       }
-
-       public int getStatus(){
-               return status;
-       }
-}