as
Alejandro Acuña
2025-01-21 61cdfc6ee7f013c4533add51d797c1886b312883
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package art.servers.configuration;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
 
 
 
@JsonPropertyOrder
({ 
    "URL",
    "Proxy address",
    "Proxy port",
    "Timeout", 
    "Maximum allowed delay", 
    "Polling"
})
 
 
public class ConfigurationNtpHttp
{
    @JsonProperty("URL")
    public String URL = null;
 
    @JsonProperty("Proxy address")
    public String proxyAddress = null;
 
    @JsonProperty("Proxy port")
    public int proxyPort = 0;
 
    @JsonProperty("Timeout")
    public int timeout = 0;
 
    @JsonProperty("Maximum allowed delay")
    public int maximumAllowedDelay = 0;
 
    @JsonProperty("Polling")
    public int polling = 0;
    
}