• 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/FeedPublisher.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
    "url",
14
    "license"
15
})
16
@Generated("jsonschema2pojo")
NEW
17
public class FeedPublisher {
×
18

19
    @JsonProperty("id")
20
    private String id;
21

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

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

28
    @JsonProperty("license")
29
    private String license;
30

NEW
31
    @JsonIgnore
×
32
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
33

34
    @JsonProperty("id")
35
    public String getId() {
NEW
36
        return id;
×
37
    }
38

39
    @JsonProperty("id")
40
    public void setId(String id) {
NEW
41
        this.id = id;
×
NEW
42
    }
×
43

44
    @JsonProperty("name")
45
    public String getName() {
NEW
46
        return name;
×
47
    }
48

49
    @JsonProperty("name")
50
    public void setName(String name) {
NEW
51
        this.name = name;
×
NEW
52
    }
×
53

54
    @JsonProperty("url")
55
    public String getUrl() {
NEW
56
        return url;
×
57
    }
58

59
    @JsonProperty("url")
60
    public void setUrl(String url) {
NEW
61
        this.url = url;
×
NEW
62
    }
×
63

64
    @JsonProperty("license")
65
    public String getLicense() {
NEW
66
        return license;
×
67
    }
68

69
    @JsonProperty("license")
70
    public void setLicense(String license) {
NEW
71
        this.license = license;
×
NEW
72
    }
×
73

74
    @JsonAnyGetter
75
    public Map<String, Object> getAdditionalProperties() {
NEW
76
        return this.additionalProperties;
×
77
    }
78

79
    @JsonAnySetter
80
    public void setAdditionalProperty(String name, Object value) {
NEW
81
        this.additionalProperties.put(name, value);
×
NEW
82
    }
×
83

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