]> git.basschouten.com Git - openhab-addons.git/blob
b2cdcdc708af8f2942fa6fffb606c7fab5d38019
[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.location;
14
15 /**
16  * Defines the structure of the configuration of a {@link LocationDTO}.
17  *
18  * @author Oliver Kuhl - Initial contribution
19  */
20 public class LocationConfigDTO {
21
22     /**
23      * Name of the {@link LocationDTO}
24      */
25     private String name;
26
27     /**
28      * Type of the {@link LocationDTO}
29      */
30     private String type;
31
32     /**
33      * @return the name
34      */
35     public String getName() {
36         return name;
37     }
38
39     /**
40      * @param name the name to set
41      */
42     public void setName(String name) {
43         this.name = name;
44     }
45
46     /**
47      * @return the type
48      */
49     public String getType() {
50         return type;
51     }
52
53     /**
54      * @param type the type to set
55      */
56     public void setType(String type) {
57         this.type = type;
58     }
59 }