]> git.basschouten.com Git - openhab-addons.git/blob
47fbee0e28c905e735734017d485d4c36c015dcb
[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.innogysmarthome.internal.client.entity.message;
14
15 import org.openhab.binding.innogysmarthome.internal.client.entity.device.Device;
16
17 /**
18  * @author Oliver Kuhl - Initial contribution
19  *
20  */
21 public class MessageProperties {
22     /**
23      * Name of the referenced {@link Device}
24      */
25     private String deviceName;
26
27     /**
28      * Serialnumber of the referenced {@link Device}
29      */
30     private String serialNumber;
31
32     /**
33      * Locationname of the referenced {@link Device}
34      */
35     private String locationName;
36
37     /**
38      * @return the deviceName
39      */
40     public String getDeviceName() {
41         return deviceName;
42     }
43
44     /**
45      * @param deviceName the deviceName to set
46      */
47     public void setDeviceName(String deviceName) {
48         this.deviceName = deviceName;
49     }
50
51     /**
52      * @return the serialNumber
53      */
54     public String getSerialNumber() {
55         return serialNumber;
56     }
57
58     /**
59      * @param serialNumber the serialNumber to set
60      */
61     public void setSerialNumber(String serialNumber) {
62         this.serialNumber = serialNumber;
63     }
64
65     /**
66      * @return the locationName
67      */
68     public String getLocationName() {
69         return locationName;
70     }
71
72     /**
73      * @param locationName the locationName to set
74      */
75     public void setLocationName(String locationName) {
76         this.locationName = locationName;
77     }
78 }