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.mqtt.homie.internal.homie300;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.openhab.binding.mqtt.homie.internal.handler.HomieThingHandler;
19 * The {@link HomieThingHandler} manages Things that are responsible for
21 * This class contains the necessary configuration for such a Thing handler.
23 * @author David Graeff - Initial contribution
26 public class HandlerConfiguration {
28 * The MQTT prefix topic
30 public String basetopic = "homie";
34 public String deviceid = "";
36 * Indicates if retained topics should be removed when the Thing is deleted.
38 public boolean removetopics = false;