• 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/Context.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
    "current_datetime",
12
    "timezone"
13
})
14
@Generated("jsonschema2pojo")
NEW
15
public class Context {
×
16

17

18
    @JsonProperty("current_datetime")
19
    private String currentDatetime;
20

21
    @JsonProperty("timezone")
22
    private String timezone;
23

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

27
    @JsonProperty("current_datetime")
28
    public String getCurrentDatetime() {
NEW
29
        return currentDatetime;
×
30
    }
31

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

37
    @JsonProperty("timezone")
38
    public String getTimezone() {
NEW
39
        return timezone;
×
40
    }
41

42
    @JsonProperty("timezone")
43
    public void setTimezone(String timezone) {
NEW
44
        this.timezone = timezone;
×
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