• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

GuillaumeDmns / website-back / #7

20 Jan 2025 10:26PM UTC coverage: 0.0%. Remained the same
#7

push

GuillaumeDmns
Merge branch 'feat/navitia-placesplaces'

0 of 180 branches covered (0.0%)

Branch coverage included in aggregate %.

0 of 857 new or added lines in 37 files covered. (0.0%)

0 of 3154 relevant lines covered (0.0%)

0.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/gdamiens/website/idfm/navitia/Poi.java
1
package com.gdamiens.website.idfm.navitia;
2

3
import com.fasterxml.jackson.annotation.*;
4
import jakarta.annotation.Generated;
5

6
import java.util.HashMap;
7
import java.util.List;
8
import java.util.Map;
9

10
@JsonInclude(JsonInclude.Include.NON_NULL)
11
@JsonPropertyOrder({
12
    "id",
13
    "name",
14
    "coord",
15
    "links",
16
    "label",
17
    "administrative_regions",
18
    "poi_type",
19
    "properties",
20
    "address",
21
    "stands",
22
    "car_park"
23
})
24
@Generated("jsonschema2pojo")
NEW
25
public class Poi {
×
26

27
    @JsonProperty("id")
28
    private String id;
29

30
    @JsonProperty("name")
31
    private String name;
32

33
    @JsonProperty("coord")
34
    private Coord coord;
35

NEW
36
    @JsonProperty("links")
×
37
    private List<LinkSchema> links = null;
38

39
    @JsonProperty("label")
40
    private String label;
41

NEW
42
    @JsonProperty("administrative_regions")
×
43
    private List<Admin> administrativeRegions = null;
44

45
    @JsonProperty("poi_type")
46
    private PoiType poiType;
47

48
    @JsonProperty("properties")
49
    private Map<String, String> properties;
50

51
    @JsonProperty("address")
52
    private Address address;
53

54
    @JsonProperty("stands")
55
    private Stands stands;
56

57
    @JsonProperty("car_park")
58
    private CarPark carPark;
59

NEW
60
    @JsonIgnore
×
61
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
62

63
    @JsonProperty("id")
64
    public String getId() {
NEW
65
        return id;
×
66
    }
67

68
    @JsonProperty("id")
69
    public void setId(String id) {
NEW
70
        this.id = id;
×
NEW
71
    }
×
72

73
    @JsonProperty("name")
74
    public String getName() {
NEW
75
        return name;
×
76
    }
77

78
    @JsonProperty("name")
79
    public void setName(String name) {
NEW
80
        this.name = name;
×
NEW
81
    }
×
82

83
    @JsonProperty("coord")
84
    public Coord getCoord() {
NEW
85
        return coord;
×
86
    }
87

88
    @JsonProperty("coord")
89
    public void setCoord(Coord coord) {
NEW
90
        this.coord = coord;
×
NEW
91
    }
×
92

93
    @JsonProperty("links")
94
    public List<LinkSchema> getLinks() {
NEW
95
        return links;
×
96
    }
97

98
    @JsonProperty("links")
99
    public void setLinks(List<LinkSchema> links) {
NEW
100
        this.links = links;
×
NEW
101
    }
×
102

103
    @JsonProperty("label")
104
    public String getLabel() {
NEW
105
        return label;
×
106
    }
107

108
    @JsonProperty("label")
109
    public void setLabel(String label) {
NEW
110
        this.label = label;
×
NEW
111
    }
×
112

113
    @JsonProperty("administrative_regions")
114
    public List<Admin> getAdministrativeRegions() {
NEW
115
        return administrativeRegions;
×
116
    }
117

118
    @JsonProperty("administrative_regions")
119
    public void setAdministrativeRegions(List<Admin> administrativeRegions) {
NEW
120
        this.administrativeRegions = administrativeRegions;
×
NEW
121
    }
×
122

123
    @JsonProperty("poi_type")
124
    public PoiType getPoiType() {
NEW
125
        return poiType;
×
126
    }
127

128
    @JsonProperty("poi_type")
129
    public void setPoiType(PoiType poiType) {
NEW
130
        this.poiType = poiType;
×
NEW
131
    }
×
132

133
    @JsonProperty("properties")
134
    public Map<String, String> getProperties() {
NEW
135
        return properties;
×
136
    }
137

138
    @JsonProperty("properties")
139
    public void setProperties(Map<String, String> properties) {
NEW
140
        this.properties = properties;
×
NEW
141
    }
×
142

143
    @JsonProperty("address")
144
    public Address getAddress() {
NEW
145
        return address;
×
146
    }
147

148
    @JsonProperty("address")
149
    public void setAddress(Address address) {
NEW
150
        this.address = address;
×
NEW
151
    }
×
152

153
    @JsonProperty("stands")
154
    public Stands getStands() {
NEW
155
        return stands;
×
156
    }
157

158
    @JsonProperty("stands")
159
    public void setStands(Stands stands) {
NEW
160
        this.stands = stands;
×
NEW
161
    }
×
162

163
    @JsonProperty("car_park")
164
    public CarPark getCarPark() {
NEW
165
        return carPark;
×
166
    }
167

168
    @JsonProperty("car_park")
169
    public void setCarPark(CarPark carPark) {
NEW
170
        this.carPark = carPark;
×
NEW
171
    }
×
172

173
    @JsonAnyGetter
174
    public Map<String, Object> getAdditionalProperties() {
NEW
175
        return this.additionalProperties;
×
176
    }
177

178
    @JsonAnySetter
179
    public void setAdditionalProperty(String name, Object value) {
NEW
180
        this.additionalProperties.put(name, value);
×
NEW
181
    }
×
182

183
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc