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

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

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

28
    @JsonProperty("level")
29
    private Integer level;
30

31
    @JsonProperty("zip_code")
32
    private String zipCode;
33

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

37
    @JsonProperty("insee")
38
    private String insee;
39

40
    @JsonProperty("coord")
41
    private Coord coord;
42

NEW
43
    @JsonIgnore
×
44
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
45

46
    @JsonProperty("id")
47
    public String getId() {
NEW
48
        return id;
×
49
    }
50

51
    @JsonProperty("id")
52
    public void setId(String id) {
NEW
53
        this.id = id;
×
NEW
54
    }
×
55

56
    @JsonProperty("name")
57
    public String getName() {
NEW
58
        return name;
×
59
    }
60

61
    @JsonProperty("name")
62
    public void setName(String name) {
NEW
63
        this.name = name;
×
NEW
64
    }
×
65

66
    @JsonProperty("level")
67
    public Integer getLevel() {
NEW
68
        return level;
×
69
    }
70

71
    @JsonProperty("level")
72
    public void setLevel(Integer quality) {
NEW
73
        this.level = quality;
×
NEW
74
    }
×
75

76
    @JsonProperty("zip_code")
77
    public String getZipCode() {
NEW
78
        return zipCode;
×
79
    }
80

81
    @JsonProperty("zip_code")
82
    public void setZipCode(String zipCode) {
NEW
83
        this.zipCode = zipCode;
×
NEW
84
    }
×
85

86
    @JsonProperty("label")
87
    public String getLabel() {
NEW
88
        return label;
×
89
    }
90

91
    @JsonProperty("label")
92
    public void setLabel(String label) {
NEW
93
        this.label = label;
×
NEW
94
    }
×
95

96
    @JsonProperty("insee")
97
    public String getInsee() {
NEW
98
        return insee;
×
99
    }
100

101
    @JsonProperty("insee")
102
    public void setInsee(String insee) {
NEW
103
        this.insee = insee;
×
NEW
104
    }
×
105

106
    @JsonProperty("coord")
107
    public Coord getCoord() {
NEW
108
        return coord;
×
109
    }
110

111
    @JsonProperty("coord")
112
    public void setCoord(Coord coord) {
NEW
113
        this.coord = coord;
×
NEW
114
    }
×
115

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

121
    @JsonAnySetter
122
    public void setAdditionalProperty(String name, Object value) {
NEW
123
        this.additionalProperties.put(name, value);
×
NEW
124
    }
×
125

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