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

GuillaumeDmns / website-back / 36

13 Dec 2025 03:38PM UTC coverage: 0.0%. Remained the same
36

push

github

GuillaumeDmns
Merge branch 'fix/actions'

0 of 250 branches covered (0.0%)

Branch coverage included in aggregate %.

0 of 4252 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/StopPoint.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
    "comments",
15
    "comment",
16
    "codes",
17
    "label",
18
    "coord",
19
    "links",
20
    "commercial_modes",
21
    "physical_modes",
22
    "administrative_regions",
23
    "stop_area",
24
    "equipments",
25
    "address",
26
    "fare_zone",
27
    "equipment_details",
28
    "lines",
29
    "access_points"
30
})
31
@Generated("jsonschema2pojo")
32
public class StopPoint {
×
33

34
    @JsonProperty("id")
35
    private String id;
36

37
    @JsonProperty("name")
38
    private String name;
39

40
    @JsonProperty("comments")
×
41
    private List<Comment> comments = null;
42

43
    @JsonProperty("comment")
44
    private String comment;
45

46
    @JsonProperty("codes")
×
47
    private List<Code> codes = null;
48

49
    @JsonProperty("label")
50
    private String label;
51

52
    @JsonProperty("coord")
53
    private Coord coord;
54

55
    @JsonProperty("links")
56
    private List<LinkSchema> links;
57

58
    private List<CommercialMode> commercialModes = null;
×
59

60
    private List<PhysicalMode> physicalModes = null;
×
61

62
    private List<Admin> administrativeRegions = null;
×
63

64
    private StopArea stopArea;
65

66
    @JsonProperty("equipments")
×
67
    private List<EquipmentsEnum> equipments = null;
68

69
    @JsonProperty("address")
70
    private Address address;
71

72
    private FareZone fareZone;
73

74
    private List<EquipmentDetails> equipmentDetails = null;
×
75

76
    @JsonProperty("lines")
×
77
    private List<Line> lines = null;
78

79
    private List<PathWay> accessPoints = null;
×
80

81
    @JsonIgnore
×
82
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
83

84
    @JsonProperty("id")
85
    public String getId() {
86
        return id;
×
87
    }
88

89
    @JsonProperty("id")
90
    public void setId(String id) {
91
        this.id = id;
×
92
    }
×
93

94
    @JsonProperty("name")
95
    public String getName() {
96
        return name;
×
97
    }
98

99
    @JsonProperty("name")
100
    public void setName(String name) {
101
        this.name = name;
×
102
    }
×
103

104
    @JsonProperty("comments")
105
    public List<Comment> getComments() {
106
        return comments;
×
107
    }
108

109
    @JsonProperty("comments")
110
    public void setComments(List<Comment> comments) {
111
        this.comments = comments;
×
112
    }
×
113

114
    @JsonProperty("comment")
115
    public String getComment() {
116
        return comment;
×
117
    }
118

119
    @JsonProperty("comment")
120
    public void setComment(String comment) {
121
        this.comment = comment;
×
122
    }
×
123

124
    @JsonProperty("codes")
125
    public List<Code> getCodes() {
126
        return codes;
×
127
    }
128

129
    @JsonProperty("codes")
130
    public void setCodes(List<Code> codes) {
131
        this.codes = codes;
×
132
    }
×
133

134
    @JsonProperty("label")
135
    public String getLabel() {
136
        return label;
×
137
    }
138

139
    @JsonProperty("label")
140
    public void setLabel(String label) {
141
        this.label = label;
×
142
    }
×
143

144
    @JsonProperty("coord")
145
    public Coord getCoord() {
146
        return coord;
×
147
    }
148

149
    @JsonProperty("coord")
150
    public void setCoord(Coord coord) {
151
        this.coord = coord;
×
152
    }
×
153

154
    @JsonProperty("links")
155
    public List<LinkSchema> getLinks() {
156
        return links;
×
157
    }
158

159
    @JsonProperty("links")
160
    public void setLinks(List<LinkSchema> links) {
161
        this.links = links;
×
162
    }
×
163

164
    @JsonProperty("commercialModes")
165
    public List<CommercialMode> getCommercialModes() {
166
        return commercialModes;
×
167
    }
168

169
    @JsonProperty("commercial_modes")
170
    public void setCommercialModes(List<CommercialMode> commercialModes) {
171
        this.commercialModes = commercialModes;
×
172
    }
×
173

174
    @JsonProperty("physicalModes")
175
    public List<PhysicalMode> getPhysicalModes() {
176
        return physicalModes;
×
177
    }
178

179
    @JsonProperty("physical_modes")
180
    public void setPhysicalModes(List<PhysicalMode> physicalModes) {
181
        this.physicalModes = physicalModes;
×
182
    }
×
183

184
    @JsonProperty("administrativeRegions")
185
    public List<Admin> getAdministrativeRegions() {
186
        return administrativeRegions;
×
187
    }
188

189
    @JsonProperty("administrative_regions")
190
    public void setAdministrativeRegions(List<Admin> administrativeRegions) {
191
        this.administrativeRegions = administrativeRegions;
×
192
    }
×
193

194
    @JsonProperty("stopArea")
195
    public StopArea getStopArea() {
196
        return stopArea;
×
197
    }
198

199
    @JsonProperty("stop_area")
200
    public void setStopArea(StopArea stopArea) {
201
        this.stopArea = stopArea;
×
202
    }
×
203

204
    @JsonProperty("equipments")
205
    public List<EquipmentsEnum> getEquipments() {
206
        return equipments;
×
207
    }
208

209
    @JsonProperty("equipments")
210
    public void setEquipments(List<EquipmentsEnum> equipments) {
211
        this.equipments = equipments;
×
212
    }
×
213

214
    @JsonProperty("address")
215
    public Address getAddress() {
216
        return address;
×
217
    }
218

219
    @JsonProperty("address")
220
    public void setAddress(Address address) {
221
        this.address = address;
×
222
    }
×
223

224
    @JsonProperty("fareZone")
225
    public FareZone getFareZone() {
226
        return fareZone;
×
227
    }
228

229
    @JsonProperty("fare_zone")
230
    public void setFareZone(FareZone fareZone) {
231
        this.fareZone = fareZone;
×
232
    }
×
233

234
    @JsonProperty("equipmentDetails")
235
    public List<EquipmentDetails> getEquipmentDetails() {
236
        return equipmentDetails;
×
237
    }
238

239
    @JsonProperty("equipment_details")
240
    public void setEquipmentDetails(List<EquipmentDetails> equipmentDetails) {
241
        this.equipmentDetails = equipmentDetails;
×
242
    }
×
243

244
    @JsonProperty("lines")
245
    public List<Line> getLines() {
246
        return lines;
×
247
    }
248

249
    @JsonProperty("lines")
250
    public void setLines(List<Line> lines) {
251
        this.lines = lines;
×
252
    }
×
253

254
    @JsonProperty("accessPoints")
255
    public List<PathWay> getAccessPoints() {
256
        return accessPoints;
×
257
    }
258

259
    @JsonProperty("access_points")
260
    public void setAccessPoints(List<PathWay> accessPoints) {
261
        this.accessPoints = accessPoints;
×
262
    }
×
263

264
    @JsonAnyGetter
265
    public Map<String, Object> getAdditionalProperties() {
266
        return this.additionalProperties;
×
267
    }
268

269
    @JsonAnySetter
270
    public void setAdditionalProperty(String name, Object value) {
271
        this.additionalProperties.put(name, value);
×
272
    }
×
273

274
}
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