2 * Copyright (c) 2010-2021 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.neeo.internal;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.eclipse.jdt.annotation.Nullable;
17 import org.openhab.binding.neeo.internal.handler.NeeoDeviceHandler;
20 * THe configuration class for the device used by {@link NeeoDeviceHandler}
22 * @author Tim Roberts - initial contribution
25 public class NeeoDeviceConfig {
27 /** The NEEO device key */
29 private String deviceKey;
34 * @return the device key
37 public String getDeviceKey() {
42 * Sets the device key.
44 * @param deviceKey the new device key
46 public void setDeviceKey(String deviceKey) {
47 this.deviceKey = deviceKey;