]> git.basschouten.com Git - openhab-addons.git/blob
024b719ddff576dcb139bc55246fed99e27c2a2c
[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.tankerkoenig.internal.dto;
14
15 /**
16  * The {@link Station} class is the representing java model for the station specific json result of the tankerkoenig.de
17  * details.php
18  * api
19  *
20  * @author Dennis Dollinger - Initial contribution
21  */
22 public class Station {
23
24     private String id;
25     private String name;
26
27     private String e5;
28     private String e10;
29     private String diesel;
30
31     private String brand;
32     private String street;
33     private String place;
34     private String postCode;
35     private Boolean open;
36
37     public String getId() {
38         return id;
39     }
40
41     public void setId(String id) {
42         this.id = id;
43     }
44
45     public String getName() {
46         return name;
47     }
48
49     public void setName(String name) {
50         this.name = name;
51     }
52
53     public String getE5() {
54         return e5;
55     }
56
57     public void setE5(String e5) {
58         this.e5 = e5;
59     }
60
61     public String getE10() {
62         return e10;
63     }
64
65     public void setE10(String e10) {
66         this.e10 = e10;
67     }
68
69     public String getDiesel() {
70         return diesel;
71     }
72
73     public void setDiesel(String diesel) {
74         this.diesel = diesel;
75     }
76
77     public String getBrand() {
78         return brand;
79     }
80
81     public void setBrand(String brand) {
82         this.brand = brand;
83     }
84
85     public String getStreet() {
86         return street;
87     }
88
89     public void setStreet(String street) {
90         this.street = street;
91     }
92
93     public String getPlace() {
94         return place;
95     }
96
97     public void setPlace(String place) {
98         this.place = place;
99     }
100
101     public String getPostCode() {
102         return postCode;
103     }
104
105     public void setPostCode(String postCode) {
106         this.postCode = postCode;
107     }
108
109     public Boolean isOpen() {
110         return open;
111     }
112
113     public void setOpen(Boolean isOpen) {
114         this.open = isOpen;
115     }
116 }