• 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/Address.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
    "house_number",
15
    "coord",
16
    "label",
17
    "administrative_regions"
18
})
19
@Generated("jsonschema2pojo")
NEW
20
public class Address {
×
21

22
    @JsonProperty("id")
23
    private String id;
24

25
    @JsonProperty("name")
26
    private String name;
27

28
    @JsonProperty("house_number")
29
    private Integer houseNumber;
30

31
    @JsonProperty("coord")
32
    private Coord coord;
33

34
    @JsonProperty("label")
35
    private String label;
36

NEW
37
    @JsonProperty("administrative_regions")
×
38
    private List<Admin> administrativeRegions = null;
39

NEW
40
    @JsonIgnore
×
41
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
42

43
    @JsonProperty("id")
44
    public String getId() {
NEW
45
        return id;
×
46
    }
47

48
    @JsonProperty("id")
49
    public void setId(String id) {
NEW
50
        this.id = id;
×
NEW
51
    }
×
52

53
    @JsonProperty("name")
54
    public String getName() {
NEW
55
        return name;
×
56
    }
57

58
    @JsonProperty("name")
59
    public void setName(String name) {
NEW
60
        this.name = name;
×
NEW
61
    }
×
62

63
    @JsonProperty("house_number")
64
    public Integer getHouseNumber() {
NEW
65
        return houseNumber;
×
66
    }
67

68
    @JsonProperty("house_number")
69
    public void setHouseNumber(Integer houseNumber) {
NEW
70
        this.houseNumber = houseNumber;
×
NEW
71
    }
×
72

73
    @JsonProperty("coord")
74
    public Coord getCoord() {
NEW
75
        return coord;
×
76
    }
77

78
    @JsonProperty("coord")
79
    public void setCoord(Coord coord) {
NEW
80
        this.coord = coord;
×
NEW
81
    }
×
82

83
    @JsonProperty("label")
84
    public String getLabel() {
NEW
85
        return label;
×
86
    }
87

88
    @JsonProperty("label")
89
    public void setLabel(String label) {
NEW
90
        this.label = label;
×
NEW
91
    }
×
92

93
    @JsonProperty("administrative_regions")
94
    public List<Admin> getAdministrativeRegions() {
NEW
95
        return administrativeRegions;
×
96
    }
97

98
    @JsonProperty("administrative_regions")
99
    public void setAdministrativeRegions(List<Admin> administrativeRegions) {
NEW
100
        this.administrativeRegions = administrativeRegions;
×
NEW
101
    }
×
102

103
    @JsonAnyGetter
104
    public Map<String, Object> getAdditionalProperties() {
NEW
105
        return this.additionalProperties;
×
106
    }
107

108
    @JsonAnySetter
109
    public void setAdditionalProperty(String name, Object value) {
NEW
110
        this.additionalProperties.put(name, value);
×
NEW
111
    }
×
112

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