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