]> git.basschouten.com Git - openhab-addons.git/blob
faf5195912902cd1ab3ef95151d297044f03190a
[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.lutron.internal.config;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.jdt.annotation.Nullable;
17
18 /**
19  * Configuration settings for a {@link org.openhab.binding.lutron.internal.handler.LeapBridgeHandler}.
20  *
21  * @author Bob Adair - Initial contribution
22  */
23 @NonNullByDefault
24 public class LeapBridgeConfig {
25     public @Nullable String ipAddress;
26     public int port = 8081;
27     public @Nullable String keystore;
28     public @Nullable String keystorePassword;
29     public boolean certValidate = false;
30     public int reconnect;
31     public int heartbeat;
32     public int delay = 0;
33 }