]> git.basschouten.com Git - openhab-addons.git/blob
936ea10e9181017759751c4d260bd0813aab1e65
[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.pilight.internal.dto;
14
15 /**
16  * Wrapper for the {@code Config} object
17  *
18  * @author Jeroen Idserda - Initial contribution
19  * @author Stefan Röllin - Port to openHAB 2 pilight binding
20  * @author Niklas Dörfler - Port pilight binding to openHAB 3 + add device discovery
21  */
22 public class Message {
23
24     private Config config;
25
26     private String message;
27
28     public Config getConfig() {
29         return config;
30     }
31
32     public void setConfig(Config config) {
33         this.config = config;
34     }
35
36     public String getMessage() {
37         return message;
38     }
39
40     public void setMessage(String message) {
41         this.message = message;
42     }
43 }