2 * Copyright (c) 2010-2023 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.lirc.internal.config;
16 * Configuration class for {@link LIRCBridge} device.
18 * @author Andrew Nagle - Initial contribution
20 public class LIRCBridgeConfiguration {
24 private int portNumber;
29 public String getHost() {
34 * @param host the host to set
36 public void setHost(String host) {
41 * @return the portNumber
43 public int getPortNumber() {
48 * @param portNumber the portNumber to set
50 public void setPortNumber(int portNumber) {
51 this.portNumber = portNumber;