• 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/Place.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
    "quality",
14
    "stop_area",
15
    "stop_point",
16
    "administrative_region",
17
    "embedded_type",
18
    "address",
19
    "poi",
20
    "access_point",
21
    "distance"
22
})
23
@Generated("jsonschema2pojo")
NEW
24
public class Place {
×
25

26
    @JsonProperty("id")
27
    private String id;
28

29
    @JsonProperty("name")
30
    private String name;
31

32
    @JsonProperty("quality")
33
    private Integer quality;
34

35
    @JsonProperty("stop_area")
36
    private StopArea stopArea;
37

38
    @JsonProperty("stop_point")
39
    private StopPoint stopPoint;
40

41
    @JsonProperty("administrative_region")
42
    private Admin administrativeRegion;
43

44
    @JsonProperty("embedded_type")
45
    private EmbeddedTypeEnum embeddedType;
46

47
    @JsonProperty("address")
48
    private Address address;
49

50
    @JsonProperty("poi")
51
    private Poi poi;
52

53
    @JsonProperty("access_point")
54
    private PathWay accessPoint;
55

56
    @JsonProperty("distance")
57
    private String distance;
58

NEW
59
    @JsonIgnore
×
60
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
61

62
    @JsonProperty("id")
63
    public String getId() {
NEW
64
        return id;
×
65
    }
66

67
    @JsonProperty("id")
68
    public void setId(String id) {
NEW
69
        this.id = id;
×
NEW
70
    }
×
71

72
    @JsonProperty("name")
73
    public String getName() {
NEW
74
        return name;
×
75
    }
76

77
    @JsonProperty("name")
78
    public void setName(String name) {
NEW
79
        this.name = name;
×
NEW
80
    }
×
81

82
    @JsonProperty("quality")
83
    public Integer getQuality() {
NEW
84
        return quality;
×
85
    }
86

87
    @JsonProperty("quality")
88
    public void setQuality(Integer quality) {
NEW
89
        this.quality = quality;
×
NEW
90
    }
×
91

92
    @JsonProperty("stop_area")
93
    public StopArea getStopArea() {
NEW
94
        return stopArea;
×
95
    }
96

97
    @JsonProperty("stop_area")
98
    public void setStopArea(StopArea stopArea) {
NEW
99
        this.stopArea = stopArea;
×
NEW
100
    }
×
101

102
    @JsonProperty("stop_point")
103
    public StopPoint getStopPoint() {
NEW
104
        return stopPoint;
×
105
    }
106

107
    @JsonProperty("stop_point")
108
    public void setStopPoint(StopPoint stopPoint) {
NEW
109
        this.stopPoint = stopPoint;
×
NEW
110
    }
×
111

112
    @JsonProperty("administrative_region")
113
    public Admin getAdministrativeRegion() {
NEW
114
        return administrativeRegion;
×
115
    }
116

117
    @JsonProperty("administrative_region")
118
    public void setAdministrativeRegion(Admin administrativeRegion) {
NEW
119
        this.administrativeRegion = administrativeRegion;
×
NEW
120
    }
×
121

122
    @JsonProperty("embedded_type")
123
    public EmbeddedTypeEnum getEmbeddedType() {
NEW
124
        return embeddedType;
×
125
    }
126

127
    @JsonProperty("embedded_type")
128
    public void setEmbeddedType(EmbeddedTypeEnum embeddedType) {
NEW
129
        this.embeddedType = embeddedType;
×
NEW
130
    }
×
131

132
    @JsonProperty("address")
133
    public Address getAddress() {
NEW
134
        return address;
×
135
    }
136

137
    @JsonProperty("address")
138
    public void setAddress(Address address) {
NEW
139
        this.address = address;
×
NEW
140
    }
×
141

142
    @JsonProperty("poi")
143
    public Poi getPoi() {
NEW
144
        return poi;
×
145
    }
146

147
    @JsonProperty("poi")
148
    public void setPoi(Poi poi) {
NEW
149
        this.poi = poi;
×
NEW
150
    }
×
151

152
    @JsonProperty("access_point")
153
    public PathWay getAccessPoint() {
NEW
154
        return accessPoint;
×
155
    }
156

157
    @JsonProperty("access_point")
158
    public void setAccessPoint(PathWay accessPoint) {
NEW
159
        this.accessPoint = accessPoint;
×
NEW
160
    }
×
161

162
    @JsonProperty("distance")
163
    public String getDistance() {
NEW
164
        return distance;
×
165
    }
166

167
    @JsonProperty("distance")
168
    public void setDistance(String distance) {
NEW
169
        this.distance = distance;
×
NEW
170
    }
×
171

172
    @JsonAnyGetter
173
    public Map<String, Object> getAdditionalProperties() {
NEW
174
        return this.additionalProperties;
×
175
    }
176

177
    @JsonAnySetter
178
    public void setAdditionalProperty(String name, Object value) {
NEW
179
        this.additionalProperties.put(name, value);
×
NEW
180
    }
×
181

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