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.livisismarthome.internal.client.api.entity.message;
16 * @author Oliver Kuhl - Initial contribution
19 public class MessagePropertiesDTO {
22 * Name of the referenced {@link org.openhab.binding.livisismarthome.internal.client.api.entity.device.DeviceDTO}
24 private String deviceName;
27 * Serialnumber of the referenced
28 * {@link org.openhab.binding.livisismarthome.internal.client.api.entity.device.DeviceDTO}
30 private String serialNumber;
33 * Locationname of the referenced
34 * {@link org.openhab.binding.livisismarthome.internal.client.api.entity.device.DeviceDTO}
36 private String locationName;
39 * @return the deviceName
41 public String getDeviceName() {
46 * @param deviceName the deviceName to set
48 public void setDeviceName(String deviceName) {
49 this.deviceName = deviceName;
53 * @return the serialNumber
55 public String getSerialNumber() {
60 * @param serialNumber the serialNumber to set
62 public void setSerialNumber(String serialNumber) {
63 this.serialNumber = serialNumber;
67 * @return the locationName
69 public String getLocationName() {
74 * @param locationName the locationName to set
76 public void setLocationName(String locationName) {
77 this.locationName = locationName;