• 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/StopArea.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
    "timezone",
18
    "label",
19
    "coord",
20
    "links",
21
    "commercial_modes",
22
    "physical_modes",
23
    "administrative_regions",
24
    "stop_points",
25
    "lines"
26
})
27
@Generated("jsonschema2pojo")
NEW
28
public class StopArea {
×
29

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

33
    @JsonProperty("name")
34
    private String name;
35

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

39
    @JsonProperty("comment")
40
    private Comment comment;
41

NEW
42
    @JsonProperty("codes")
×
43
    private List<Code> codes = null;
44

45
    @JsonProperty("timezone")
46
    private String timezone;
47

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

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

NEW
54
    @JsonProperty("links")
×
55
    private List<LinkSchema> links = null;
56

NEW
57
    @JsonProperty("commercial_modes")
×
58
    private List<CommercialMode> commercialModes = null;
59

NEW
60
    @JsonProperty("physical_modes")
×
61
    private List<PhysicalMode> physicalModes = null;
62

NEW
63
    @JsonProperty("administrative_regions")
×
64
    private List<Admin> administrativeRegions = null;
65

NEW
66
    @JsonProperty("stop_points")
×
67
    private List<StopPoint> stopPoints = null;
68

NEW
69
    @JsonProperty("lines")
×
70
    private List<Line> lines = null;
71

NEW
72
    @JsonIgnore
×
73
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
74

75
    @JsonProperty("id")
76
    public String getId() {
NEW
77
        return id;
×
78
    }
79

80
    @JsonProperty("id")
81
    public void setId(String id) {
NEW
82
        this.id = id;
×
NEW
83
    }
×
84

85
    @JsonProperty("name")
86
    public String getName() {
NEW
87
        return name;
×
88
    }
89

90
    @JsonProperty("name")
91
    public void setName(String name) {
NEW
92
        this.name = name;
×
NEW
93
    }
×
94

95
    @JsonProperty("comments")
96
    public List<Comment> getComments() {
NEW
97
        return comments;
×
98
    }
99

100
    @JsonProperty("comments")
101
    public void setComments(List<Comment> comments) {
NEW
102
        this.comments = comments;
×
NEW
103
    }
×
104

105
    @JsonProperty("comment")
106
    public Comment getComment() {
NEW
107
        return comment;
×
108
    }
109

110
    @JsonProperty("comment")
111
    public void setComment(Comment comment) {
NEW
112
        this.comment = comment;
×
NEW
113
    }
×
114

115
    @JsonProperty("codes")
116
    public List<Code> getCodes() {
NEW
117
        return codes;
×
118
    }
119

120
    @JsonProperty("codes")
121
    public void setCodes(List<Code> codes) {
NEW
122
        this.codes = codes;
×
NEW
123
    }
×
124

125
    @JsonProperty("timezone")
126
    public String getTimezone() {
NEW
127
        return timezone;
×
128
    }
129

130
    @JsonProperty("timezone")
131
    public void setTimezone(String timezone) {
NEW
132
        this.timezone = timezone;
×
NEW
133
    }
×
134

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

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

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

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

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

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

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

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

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

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

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

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

195
    @JsonProperty("stop_points")
196
    public List<StopPoint> getStopPoints() {
NEW
197
        return stopPoints;
×
198
    }
199

200
    @JsonProperty("stop_points")
201
    public void setStopPoints(List<StopPoint> stopPoints) {
NEW
202
        this.stopPoints = stopPoints;
×
NEW
203
    }
×
204

205
    @JsonProperty("lines")
206
    public List<Line> getLines() {
NEW
207
        return lines;
×
208
    }
209

210
    @JsonProperty("lines")
211
    public void setLines(List<Line> lines) {
NEW
212
        this.lines = lines;
×
NEW
213
    }
×
214

215
    @JsonAnyGetter
216
    public Map<String, Object> getAdditionalProperties() {
NEW
217
        return this.additionalProperties;
×
218
    }
219

220
    @JsonAnySetter
221
    public void setAdditionalProperty(String name, Object value) {
NEW
222
        this.additionalProperties.put(name, value);
×
NEW
223
    }
×
224

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