2 * Copyright (c) 2010-2024 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.knx.internal.config;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * IP Bridge handler configuration object.
20 * @author Simon Kaufmann - initial contribution and API
24 public class IPBridgeConfiguration extends BridgeConfiguration {
26 private boolean useNAT = false;
27 private String type = "";
28 private String ipAddress = "";
29 private int portNumber = 0;
30 private String localIp = "";
31 private String localSourceAddr = "";
32 private String routerBackboneKey = "";
33 private String tunnelUserId = "";
34 private String tunnelUserPassword = "";
35 private String tunnelDeviceAuthentication = "";
37 public Boolean getUseNAT() {
41 public String getType() {
45 public String getIpAddress() {
49 public int getPortNumber() {
53 public String getLocalIp() {
57 public String getLocalSourceAddr() {
58 return localSourceAddr;
61 public String getRouterBackboneKey() {
62 return routerBackboneKey;
65 public String getTunnelUserId() {
69 public String getTunnelUserPassword() {
70 return tunnelUserPassword;
73 public String getTunnelDeviceAuthentication() {
74 return tunnelDeviceAuthentication;