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

GuillaumeDmns / website-back / 26

07 Dec 2025 10:45PM UTC coverage: 0.0%. Remained the same
26

push

github

GuillaumeDmns
Add some more Navitia fields

0 of 234 branches covered (0.0%)

Branch coverage included in aggregate %.

0 of 42 new or added lines in 4 files covered. (0.0%)

3 existing lines in 3 files now uncovered.

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

3
import com.fasterxml.jackson.annotation.JsonAnyGetter;
4
import com.fasterxml.jackson.annotation.JsonAnySetter;
5
import com.fasterxml.jackson.annotation.JsonIgnore;
6
import com.fasterxml.jackson.annotation.JsonProperty;
7

8
import java.util.HashMap;
9
import java.util.Map;
10

NEW
11
public class Via {
×
12
    @JsonProperty("id")
13
    String id;
14

15
    @JsonProperty("name")
16
    String name;
17

18
    AccessPoint accessPoint;
19

20
    Boolean isEntrance;
21

22
    Boolean isExit;
23

24
    @JsonProperty("length")
25
    int length;
26

27
    int traversalTime;
28

29
    int pathwayMode;
30

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

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

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

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

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

54
    @JsonProperty("accessPoint")
55
    public AccessPoint getAccessPoint() {
NEW
56
        return accessPoint;
×
57
    }
58

59
    @JsonProperty("access_point")
60
    public void setAccessPoint(AccessPoint accessPoint) {
NEW
61
        this.accessPoint = accessPoint;
×
NEW
62
    }
×
63

64
    @JsonProperty("isEntrance")
65
    public Boolean isEntrance() {
NEW
66
        return isEntrance;
×
67
    }
68

69
    @JsonProperty("is_entrance")
70
    public void setEntrance(Boolean entrance) {
NEW
71
        isEntrance = entrance;
×
NEW
72
    }
×
73

74
    @JsonProperty("isExit")
75
    public Boolean isExit() {
NEW
76
        return isExit;
×
77
    }
78

79
    @JsonProperty("is_exit")
80
    public void setExit(Boolean exit) {
NEW
81
        isExit = exit;
×
NEW
82
    }
×
83

84
    @JsonProperty("length")
85
    public int getLength() {
NEW
86
        return this.length;
×
87
    }
88

89
    @JsonProperty("length")
90
    public void setLength(int length) {
NEW
91
        this.length = length;
×
NEW
92
    }
×
93

94
    @JsonProperty("traversalTime")
95
    public int getTraversalTime() {
NEW
96
        return traversalTime;
×
97
    }
98

99
    @JsonProperty("traversal_time")
100
    public void setTraversalTime(int traversalTime) {
NEW
101
        this.traversalTime = traversalTime;
×
NEW
102
    }
×
103

104
    @JsonProperty("pathwayMode")
105
    public int getPathwayMode() {
NEW
106
        return pathwayMode;
×
107
    }
108

109
    @JsonProperty("pathway_mode")
110
    public void setPathwayMode(int pathwayMode) {
NEW
111
        this.pathwayMode = pathwayMode;
×
NEW
112
    }
×
113

114
    @JsonAnyGetter
115
    public Map<String, Object> getAdditionalProperties() {
NEW
116
        return this.additionalProperties;
×
117
    }
118

119
    @JsonAnySetter
120
    public void setAdditionalProperty(String name, Object value) {
NEW
121
        this.additionalProperties.put(name, value);
×
NEW
122
    }
×
123
}
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