• 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/PoiType.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
    "links"
13
})
14
@Generated("jsonschema2pojo")
NEW
15
public class PoiType {
×
16

17
    @JsonProperty("id")
18
    private String id;
19

20
    @JsonProperty("name")
21
    private String name;
22

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

26
    @JsonProperty("id")
27
    public String getId() {
NEW
28
        return id;
×
29
    }
30

31
    @JsonProperty("id")
32
    public void setId(String id) {
NEW
33
        this.id = id;
×
NEW
34
    }
×
35

36
    @JsonProperty("name")
37
    public String getName() {
NEW
38
        return name;
×
39
    }
40

41
    @JsonProperty("name")
42
    public void setName(String name) {
NEW
43
        this.name = name;
×
NEW
44
    }
×
45

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

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

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