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

GuillaumeDmns / website-back / #8

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

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/Places.java
1
package com.gdamiens.website.idfm.navitia;
2

3
import java.util.HashMap;
4
import java.util.List;
5
import java.util.Map;
6
import jakarta.annotation.Generated;
7
import com.fasterxml.jackson.annotation.JsonAnyGetter;
8
import com.fasterxml.jackson.annotation.JsonAnySetter;
9
import com.fasterxml.jackson.annotation.JsonIgnore;
10
import com.fasterxml.jackson.annotation.JsonInclude;
11
import com.fasterxml.jackson.annotation.JsonProperty;
12
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
13

14
@JsonInclude(JsonInclude.Include.NON_NULL)
15
@JsonPropertyOrder({
16
    "feedPublishers",
17
    "disruptions",
18
    "places",
19
    "context",
20
    "links"
21
})
22
@Generated("jsonschema2pojo")
NEW
23
public class Places {
×
24

NEW
25
    @JsonProperty("feed_publishers")
×
26
    private List<FeedPublisher> feedPublishers = null;
27

NEW
28
    @JsonProperty("places")
×
29
    private List<Place> places = null;
30

31
    @JsonProperty("context")
32
    private Context context;
33

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

NEW
37
    @JsonIgnore
×
38
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
39

40

41
    @JsonProperty("feed_publishers")
42
    public List<FeedPublisher> getFeedPublishers() {
NEW
43
        return feedPublishers;
×
44
    }
45

46
    @JsonProperty("feed_publishers")
47
    public void setFeedPublishers(List<FeedPublisher> feedPublishers) {
NEW
48
        this.feedPublishers = feedPublishers;
×
NEW
49
    }
×
50

51
    @JsonProperty("places")
52
    public List<Place> getPlaces() {
NEW
53
        return places;
×
54
    }
55

56
    @JsonProperty("places")
57
    public void setPlaces(List<Place> places) {
NEW
58
        this.places = places;
×
NEW
59
    }
×
60

61
    @JsonProperty("context")
62
    public Context getContext() {
NEW
63
        return context;
×
64
    }
65

66
    @JsonProperty("context")
67
    public void setContext(Context context) {
NEW
68
        this.context = context;
×
NEW
69
    }
×
70

71
    @JsonProperty("links")
72
    public List<LinkSchema> getLinks() {
NEW
73
        return links;
×
74
    }
75

76
    @JsonProperty("links")
77
    public void setLinks(List<LinkSchema> links) {
NEW
78
        this.links = links;
×
NEW
79
    }
×
80

81
    @JsonAnyGetter
82
    public Map<String, Object> getAdditionalProperties() {
NEW
83
        return this.additionalProperties;
×
84
    }
85

86
    @JsonAnySetter
87
    public void setAdditionalProperty(String name, Object value) {
NEW
88
        this.additionalProperties.put(name, value);
×
NEW
89
    }
×
90

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