• 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/PathWay.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.Map;
8

9
@JsonInclude(JsonInclude.Include.NON_NULL)
10
@JsonPropertyOrder({
11
    "id",
12
    "name",
13
    "access_point",
14
    "is_entrance",
15
    "is_exit",
16
    "administrative_region",
17
    "traversal_time",
18
    "pathway_mode",
19
    "stair_count",
20
    "max_slope",
21
    "min_width",
22
    "signposted_as",
23
    "reversed_signposted_as"
24
})
25
@Generated("jsonschema2pojo")
NEW
26
public class PathWay {
×
27

28
    @JsonProperty("id")
29
    private String id;
30

31
    @JsonProperty("name")
32
    private String name;
33

34
    @JsonProperty("access_point")
35
    private AccessPoint accessPoint;
36

37
    @JsonProperty("is_entrance")
38
    private Boolean isEntrance;
39

40
    @JsonProperty("is_exit")
41
    private Boolean isExit;
42

43
    @JsonProperty("length")
44
    private Integer length;
45

46
    @JsonProperty("traversal_time")
47
    private Integer traversalTime;
48

49
    @JsonProperty("pathway_mode")
50
    private Integer pathwayMode;
51

52
    @JsonProperty("stair_count")
53
    private Integer stairCount;
54

55
    @JsonProperty("max_slope")
56
    private Integer maxSlope;
57

58
    @JsonProperty("min_width")
59
    private Integer minWidth;
60

61
    @JsonProperty("signposted_as")
62
    private String signpostedAs;
63

64
    @JsonProperty("reversed_signposted_as")
65
    private String reversedSignpostedAs;
66

NEW
67
    @JsonIgnore
×
68
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
69

70
    @JsonProperty("id")
71
    public String getId() {
NEW
72
        return id;
×
73
    }
74

75
    @JsonProperty("id")
76
    public void setId(String id) {
NEW
77
        this.id = id;
×
NEW
78
    }
×
79

80
    @JsonProperty("name")
81
    public String getName() {
NEW
82
        return name;
×
83
    }
84

85
    @JsonProperty("name")
86
    public void setName(String name) {
NEW
87
        this.name = name;
×
NEW
88
    }
×
89

90
    @JsonProperty("access_point")
91
    public AccessPoint getAccessPoint() {
NEW
92
        return accessPoint;
×
93
    }
94

95
    @JsonProperty("access_point")
96
    public void setAccessPoint(AccessPoint accessPoint) {
NEW
97
        this.accessPoint = accessPoint;
×
NEW
98
    }
×
99

100
    @JsonProperty("is_entrance")
101
    public Boolean getEntrance() {
NEW
102
        return isEntrance;
×
103
    }
104

105
    @JsonProperty("is_entrance")
106
    public void setEntrance(Boolean entrance) {
NEW
107
        isEntrance = entrance;
×
NEW
108
    }
×
109

110
    @JsonProperty("is_exit")
111
    public Boolean getExit() {
NEW
112
        return isExit;
×
113
    }
114

115
    @JsonProperty("is_exit")
116
    public void setExit(Boolean exit) {
NEW
117
        isExit = exit;
×
NEW
118
    }
×
119

120
    @JsonProperty("length")
121
    public Integer getLength() {
NEW
122
        return length;
×
123
    }
124

125
    @JsonProperty("length")
126
    public void setLength(Integer length) {
NEW
127
        this.length = length;
×
NEW
128
    }
×
129

130
    @JsonProperty("traversal_time")
131
    public Integer getTraversalTime() {
NEW
132
        return traversalTime;
×
133
    }
134

135
    @JsonProperty("traversal_time")
136
    public void setTraversalTime(Integer traversalTime) {
NEW
137
        this.traversalTime = traversalTime;
×
NEW
138
    }
×
139

140
    @JsonProperty("pathway_mode")
141
    public Integer getPathwayMode() {
NEW
142
        return pathwayMode;
×
143
    }
144

145
    @JsonProperty("pathway_mode")
146
    public void setPathwayMode(Integer pathwayMode) {
NEW
147
        this.pathwayMode = pathwayMode;
×
NEW
148
    }
×
149

150
    @JsonProperty("stair_count")
151
    public Integer getStairCount() {
NEW
152
        return stairCount;
×
153
    }
154

155
    @JsonProperty("stair_count")
156
    public void setStairCount(Integer stairCount) {
NEW
157
        this.stairCount = stairCount;
×
NEW
158
    }
×
159

160
    @JsonProperty("max_slope")
161
    public Integer getMaxSlope() {
NEW
162
        return maxSlope;
×
163
    }
164

165
    @JsonProperty("max_slope")
166
    public void setMaxSlope(Integer maxSlope) {
NEW
167
        this.maxSlope = maxSlope;
×
NEW
168
    }
×
169

170
    @JsonProperty("min_width")
171
    public Integer getMinWidth() {
NEW
172
        return minWidth;
×
173
    }
174

175
    @JsonProperty("min_width")
176
    public void setMinWidth(Integer minWidth) {
NEW
177
        this.minWidth = minWidth;
×
NEW
178
    }
×
179

180
    @JsonProperty("signposted_as")
181
    public String getSignpostedAs() {
NEW
182
        return signpostedAs;
×
183
    }
184

185
    @JsonProperty("signposted_as")
186
    public void setSignpostedAs(String signpostedAs) {
NEW
187
        this.signpostedAs = signpostedAs;
×
NEW
188
    }
×
189

190
    @JsonProperty("reversed_signposted_as")
191
    public String getReversedSignpostedAs() {
NEW
192
        return reversedSignpostedAs;
×
193
    }
194

195
    @JsonProperty("reversed_signposted_as")
196
    public void setReversedSignpostedAs(String reversedSignpostedAs) {
NEW
197
        this.reversedSignpostedAs = reversedSignpostedAs;
×
NEW
198
    }
×
199

200
    @JsonAnyGetter
201
    public Map<String, Object> getAdditionalProperties() {
NEW
202
        return this.additionalProperties;
×
203
    }
204

205
    @JsonAnySetter
206
    public void setAdditionalProperty(String name, Object value) {
NEW
207
        this.additionalProperties.put(name, value);
×
NEW
208
    }
×
209

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