]> git.basschouten.com Git - openhab-addons.git/blob
926e4b382457526e1682e679d870f9e30eeeb838
[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.lirc.internal.config;
14
15 /**
16  * Configuration class for LIRCBridge device.
17  *
18  * @author Andrew Nagle - Initial contribution
19  */
20 public class LIRCBridgeConfiguration {
21
22     private String host;
23
24     private int portNumber;
25
26     /**
27      * @return the host
28      */
29     public String getHost() {
30         return host;
31     }
32
33     /**
34      * @param host the host to set
35      */
36     public void setHost(String host) {
37         this.host = host;
38     }
39
40     /**
41      * @return the portNumber
42      */
43     public int getPortNumber() {
44         return portNumber;
45     }
46
47     /**
48      * @param portNumber the portNumber to set
49      */
50     public void setPortNumber(int portNumber) {
51         this.portNumber = portNumber;
52     }
53 }