2 * Copyright (c) 2010-2022 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.dscalarm.internal.config;
16 * Configuration class for the EyezOn Envisalink 3/2DS Ethernet TCP interface bridge, used to connect to the DSC Alarm
19 * @author Russell Stephens - Initial contribution
22 public class EnvisalinkBridgeConfiguration {
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";
32 * The IP address of the Envisalink Ethernet 3/2DS TCP interface
34 public String ipAddress;
37 * The port number of the Envisalink Ethernet 3/2DS TCP interface
42 * The password of the Envisalink Ethernet 3/2DS TCP interface
44 public String password;
47 * The Socket connection timeout for the Envisalink Ethernet 3/2DS TCP interface
49 public Integer connectionTimeout;
52 * The Panel Poll Period. Can be set in range 1-15 minutes. Default is 1 minute;
54 public Integer pollPeriod;