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.innogysmarthome.internal.client.entity.message;
15 import org.openhab.binding.innogysmarthome.internal.client.entity.device.Device;
18 * @author Oliver Kuhl - Initial contribution
21 public class MessageProperties {
23 * Name of the referenced {@link Device}
25 private String deviceName;
28 * Serialnumber of the referenced {@link Device}
30 private String serialNumber;
33 * Locationname of the referenced {@link Device}
35 private String locationName;
38 * @return the deviceName
40 public String getDeviceName() {
45 * @param deviceName the deviceName to set
47 public void setDeviceName(String deviceName) {
48 this.deviceName = deviceName;
52 * @return the serialNumber
54 public String getSerialNumber() {
59 * @param serialNumber the serialNumber to set
61 public void setSerialNumber(String serialNumber) {
62 this.serialNumber = serialNumber;
66 * @return the locationName
68 public String getLocationName() {
73 * @param locationName the locationName to set
75 public void setLocationName(String locationName) {
76 this.locationName = locationName;