• 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/Network.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
    "links",
15
    "codes"
16
})
17
@Generated("jsonschema2pojo")
NEW
18
public class Network {
×
19

20
    @JsonProperty("id")
21
    private String id;
22

23
    @JsonProperty("name")
24
    private String name;
25

NEW
26
    @JsonProperty("links")
×
27
    private List<LinkSchema> links = null;
28

NEW
29
    @JsonProperty("codes")
×
30
    private List<Code> codes = null;
31

NEW
32
    @JsonIgnore
×
33
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
34

35
    @JsonProperty("id")
36
    public String getId() {
NEW
37
        return id;
×
38
    }
39

40
    @JsonProperty("id")
41
    public void setId(String id) {
NEW
42
        this.id = id;
×
NEW
43
    }
×
44

45
    @JsonProperty("name")
46
    public String getName() {
NEW
47
        return name;
×
48
    }
49

50
    @JsonProperty("name")
51
    public void setName(String name) {
NEW
52
        this.name = name;
×
NEW
53
    }
×
54

55
    @JsonProperty("links")
56
    public List<LinkSchema> getLinks() {
NEW
57
        return links;
×
58
    }
59

60
    @JsonProperty("links")
61
    public void setLinks(List<LinkSchema> links) {
NEW
62
        this.links = links;
×
NEW
63
    }
×
64

65
    @JsonProperty("codes")
66
    public List<Code> getCodes() {
NEW
67
        return codes;
×
68
    }
69

70
    @JsonProperty("codes")
71
    public void setCodes(List<Code> codes) {
NEW
72
        this.codes = codes;
×
NEW
73
    }
×
74

75
    @JsonAnyGetter
76
    public Map<String, Object> getAdditionalProperties() {
NEW
77
        return this.additionalProperties;
×
78
    }
79

80
    @JsonAnySetter
81
    public void setAdditionalProperty(String name, Object value) {
NEW
82
        this.additionalProperties.put(name, value);
×
NEW
83
    }
×
84

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