]> git.basschouten.com Git - openhab-addons.git/blob
bc2ad5ebdac8f1ad1804e527931564d31e80821a
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.paradoxalarm.internal.model;
14
15 /**
16  * The {@link ZoneStateFlags} Paradox zone state flags. Retrieved and parsed from RAM memory responses.
17  *
18  * @author Konstantin Polihronov - Initial contribution
19  */
20 public class ZoneStateFlags {
21     private byte[] zonesOpened;
22     private byte[] zonesTampered;
23     private byte[] zonesLowBattery;
24
25     public byte[] getZonesOpened() {
26         return zonesOpened;
27     }
28
29     public void setZonesOpened(byte[] zonesOpened) {
30         this.zonesOpened = zonesOpened;
31     }
32
33     public byte[] getZonesTampered() {
34         return zonesTampered;
35     }
36
37     public void setZonesTampered(byte[] zonesTampered) {
38         this.zonesTampered = zonesTampered;
39     }
40
41     public byte[] getZonesLowBattery() {
42         return zonesLowBattery;
43     }
44
45     public void setZonesLowBattery(byte[] zonesLowBattery) {
46         this.zonesLowBattery = zonesLowBattery;
47     }
48 }