]> git.basschouten.com Git - openhab-addons.git/blob
12af1aa3284d7c4ffba95fa1baa8b5ea0c986efa
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2020 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.gardena.internal.model;
14
15 /**
16  * Represents a Gardena property value.
17  *
18  * @author Gerhard Riegler - Initial contribution
19  */
20 public class PropertyValue {
21     private String value;
22
23     public PropertyValue() {
24     }
25
26     public PropertyValue(String value) {
27         this.value = value;
28     }
29
30     /**
31      * Returns the value of the property.
32      */
33     public String getValue() {
34         return value;
35     }
36
37     /**
38      * Sets the value of the property.
39      */
40     public void setValue(String value) {
41         this.value = value;
42     }
43 }