• 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/MultiLineStringSchema.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
    "type",
13
    "coordinates"
14
})
15
@Generated("jsonschema2pojo")
NEW
16
public class MultiLineStringSchema {
×
17

18
    @JsonProperty("type")
19
    private String type;
20

NEW
21
    @JsonProperty("coordinates")
×
22
    private List<List<List<Float>>> coordinates = null;
23

NEW
24
    @JsonIgnore
×
25
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
26

27
    @JsonProperty("type")
28
    public String getType() {
NEW
29
        return type;
×
30
    }
31

32
    @JsonProperty("type")
33
    public void setType(String type) {
NEW
34
        this.type = type;
×
NEW
35
    }
×
36

37
    @JsonProperty("coordinates")
38
    public List<List<List<Float>>> getCoordinates() {
NEW
39
        return coordinates;
×
40
    }
41

42
    @JsonProperty("coordinates")
43
    public void setCoordinates(List<List<List<Float>>> coordinates) {
NEW
44
        this.coordinates = coordinates;
×
NEW
45
    }
×
46

47
    @JsonAnyGetter
48
    public Map<String, Object> getAdditionalProperties() {
NEW
49
        return this.additionalProperties;
×
50
    }
51

52
    @JsonAnySetter
53
    public void setAdditionalProperty(String name, Object value) {
NEW
54
        this.additionalProperties.put(name, value);
×
NEW
55
    }
×
56

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