]> git.basschouten.com Git - openhab-addons.git/blob
bcb84c98c469937a6c56f30655af3268458ce28c
[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 LittleStation} class is the representing java model for the station specific json result of the prices
17  * request. (LittleStation because it has nearly no other information than gas prices. Stripped down version of
18  * Station.java)
19  *
20  * @author Dennis Dollinger - Initial contribution
21  */
22 public class LittleStation {
23
24     private String e5;
25     private String e10;
26     private String diesel;
27     private String status;
28     private String id;
29     private Boolean open;
30
31     public String getE5() {
32         return e5;
33     }
34
35     public void setE5(String e5) {
36         this.e5 = e5;
37     }
38
39     public String getE10() {
40         return e10;
41     }
42
43     public void setE10(String e10) {
44         this.e10 = e10;
45     }
46
47     public String getDiesel() {
48         return diesel;
49     }
50
51     public void setDiesel(String diesel) {
52         this.diesel = diesel;
53     }
54
55     public String getStatus() {
56         return status;
57     }
58
59     public void setStatus(String status) {
60         this.status = status;
61     }
62
63     public String getID() {
64         return id;
65     }
66
67     public void setID(String id) {
68         this.id = id;
69     }
70
71     public Boolean isOpen() {
72         return open;
73     }
74
75     public void setOpen(Boolean isOpen) {
76         this.open = isOpen;
77     }
78 }