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.knx.internal.config;
15 import java.math.BigDecimal;
18 * IP Bridge handler configuration object.
20 * @author Simon Kaufmann - initial contribution and API
23 public class IPBridgeConfiguration extends BridgeConfiguration {
25 private boolean useNAT;
27 private String ipAddress;
28 private BigDecimal portNumber;
29 private String localIp;
30 private String localSourceAddr;
32 public Boolean getUseNAT() {
36 public String getType() {
40 public String getIpAddress() {
44 public BigDecimal getPortNumber() {
48 public String getLocalIp() {
52 public String getLocalSourceAddr() {
53 return localSourceAddr;