]> git.basschouten.com Git - openhab-addons.git/blob
ec486e8a02cdc65ec05d23240784c4aa103d805a
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
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
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.livisismarthome.internal.client.api.entity.message;
14
15 /**
16  * @author Oliver Kuhl - Initial contribution
17  *
18  */
19 public class MessagePropertiesDTO {
20
21     /**
22      * Name of the referenced {@link org.openhab.binding.livisismarthome.internal.client.api.entity.device.DeviceDTO}
23      */
24     private String deviceName;
25
26     /**
27      * Serialnumber of the referenced
28      * {@link org.openhab.binding.livisismarthome.internal.client.api.entity.device.DeviceDTO}
29      */
30     private String serialNumber;
31
32     /**
33      * Locationname of the referenced
34      * {@link org.openhab.binding.livisismarthome.internal.client.api.entity.device.DeviceDTO}
35      */
36     private String locationName;
37
38     /**
39      * @return the deviceName
40      */
41     public String getDeviceName() {
42         return deviceName;
43     }
44
45     /**
46      * @param deviceName the deviceName to set
47      */
48     public void setDeviceName(String deviceName) {
49         this.deviceName = deviceName;
50     }
51
52     /**
53      * @return the serialNumber
54      */
55     public String getSerialNumber() {
56         return serialNumber;
57     }
58
59     /**
60      * @param serialNumber the serialNumber to set
61      */
62     public void setSerialNumber(String serialNumber) {
63         this.serialNumber = serialNumber;
64     }
65
66     /**
67      * @return the locationName
68      */
69     public String getLocationName() {
70         return locationName;
71     }
72
73     /**
74      * @param locationName the locationName to set
75      */
76     public void setLocationName(String locationName) {
77         this.locationName = locationName;
78     }
79 }