]> git.basschouten.com Git - openhab-addons.git/blob
54e27517e4b1da511ecf4d196ffd757a3bac8a50
[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.dscalarm.internal.config;
14
15 /**
16  * Configuration class for the EyezOn Envisalink 3/2DS Ethernet TCP interface bridge, used to connect to the DSC Alarm
17  * system.
18  *
19  * @author Russell Stephens - Initial contribution
20  */
21
22 public class EnvisalinkBridgeConfiguration {
23
24     // Envisalink Bridge Thing constants
25     public static final String IP_ADDRESS = "ipAddress";
26     public static final String PORT = "port";
27     public static final String PASSWORD = "password";
28     public static final String CONNECTION_TIMEOUT = "connectionTimeout";
29     public static final String POLL_PERIOD = "pollPeriod";
30
31     /**
32      * The IP address of the Envisalink Ethernet 3/2DS TCP interface
33      */
34     public String ipAddress;
35
36     /**
37      * The port number of the Envisalink Ethernet 3/2DS TCP interface
38      */
39     public Integer port;
40
41     /**
42      * The password of the Envisalink Ethernet 3/2DS TCP interface
43      */
44     public String password;
45
46     /**
47      * The Socket connection timeout for the Envisalink Ethernet 3/2DS TCP interface
48      */
49     public Integer connectionTimeout;
50
51     /**
52      * The Panel Poll Period. Can be set in range 1-15 minutes. Default is 1 minute;
53      */
54     public Integer pollPeriod;
55 }