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.broadlinkthermostat.internal;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * The {@link BroadlinkConfig} class holds the configuration properties of the thing.
20 * @author Florian Mueller - Initial contribution
24 public class BroadlinkConfig {
26 private String macAddress;
28 public BroadlinkConfig() {
29 this.host = "0.0.0.0";
30 this.macAddress = "00:00:00:00";
33 public String getHost() {
37 public void setHost(String host) {
41 public String getMacAddress() {
45 public void setMacAddress(String macAddress) {
46 this.macAddress = macAddress;