X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=benchmarks%2Fother%2FZigbeeTest%2FIoTZigbeeMessageZclZoneStatusChangeNotification.java;fp=benchmarks%2Fother%2FZigbeeTest%2FIoTZigbeeMessageZclZoneStatusChangeNotification.java;h=0000000000000000000000000000000000000000;hb=8e565033fd19c4696f67862ade27f0ebbacf5682;hp=fd633fe08ce8b893d3e2d64a5e42cfe1c785b1ea;hpb=1af9249ca8ff8f6bfd7444ad1a9196bc83c8838a;p=iot2.git diff --git a/benchmarks/other/ZigbeeTest/IoTZigbeeMessageZclZoneStatusChangeNotification.java b/benchmarks/other/ZigbeeTest/IoTZigbeeMessageZclZoneStatusChangeNotification.java deleted file mode 100644 index fd633fe..0000000 --- a/benchmarks/other/ZigbeeTest/IoTZigbeeMessageZclZoneStatusChangeNotification.java +++ /dev/null @@ -1,37 +0,0 @@ -/** Zigbee Message Zcl Zone Status Change Notification. - * - * @author changwoo Lee - * @version 1.0 - * @since 2016-10-28 - */ -public class IoTZigbeeMessageZclZoneStatusChangeNotification extends IoTZigbeeMessage { - - private boolean SuccessOrFail=false; - private int clusterId; - private int profileId; - private int status; - - public IoTZigbeeMessageZclZoneStatusChangeNotification(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; - } -}