]> git.basschouten.com Git - openhab-addons.git/blob
be09c1e8a17de2ed9d3d2963fa7ab6f36c5d2efb
[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.handlers;
14
15 /**
16  * The {@link ParadoxIP150BridgeConfiguration} class contains fields mapping thing configuration parameters.
17  *
18  * @author Konstantin Polihronov - Initial contribution
19  */
20 public class ParadoxIP150BridgeConfiguration {
21
22     private int refresh;
23     private String ip150Password;
24     private String pcPassword;
25     private String ipAddress;
26     private int port;
27     private String panelType;
28     private int reconnectWaitTime;
29     private Integer maxZones;
30     private Integer maxPartitions;
31     private boolean encrypt;
32
33     public int getRefresh() {
34         return refresh;
35     }
36
37     public void setRefresh(int refresh) {
38         this.refresh = refresh;
39     }
40
41     public String getIp150Password() {
42         return ip150Password;
43     }
44
45     public void setIp150Password(String ip150Password) {
46         this.ip150Password = ip150Password;
47     }
48
49     public String getPcPassword() {
50         return pcPassword;
51     }
52
53     public void setPcPassword(String pcPassword) {
54         this.pcPassword = pcPassword;
55     }
56
57     public String getIpAddress() {
58         return ipAddress;
59     }
60
61     public void setIpAddress(String ipAddress) {
62         this.ipAddress = ipAddress;
63     }
64
65     public int getPort() {
66         return port;
67     }
68
69     public void setPort(int port) {
70         this.port = port;
71     }
72
73     public String getPanelType() {
74         return panelType;
75     }
76
77     public void setPanelType(String panelType) {
78         this.panelType = panelType;
79     }
80
81     public int getReconnectWaitTime() {
82         return reconnectWaitTime;
83     }
84
85     public void setReconnectWaitTime(int reconnectWaitTime) {
86         this.reconnectWaitTime = reconnectWaitTime;
87     }
88
89     public Integer getMaxZones() {
90         return maxZones;
91     }
92
93     public void setMaxZones(Integer maxZones) {
94         this.maxZones = maxZones;
95     }
96
97     public Integer getMaxPartitions() {
98         return maxPartitions;
99     }
100
101     public void setMaxPartitions(Integer maxPartitions) {
102         this.maxPartitions = maxPartitions;
103     }
104
105     public boolean isEncrypt() {
106         return encrypt;
107     }
108
109     public void setEncrypt(boolean encrypt) {
110         this.encrypt = encrypt;
111     }
112 }