bck
Alejandro Acuña
2024-11-11 f1cb4443aede6d4657bdc3396c8914d3a9f4fa93
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
40
41
42
43
44
45
46
47
48
49
package art.servers.fleetserver.configuration;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
 
 
@JsonRootName(value = "Configuration DPS")
 
 
public class ConfigurationDPS 
{
    @JsonProperty("Name")
    public String name = null;
 
    /**
     * Interop connection
     */
    @JsonProperty("Service")
    public String service = null;
    
 
    /**
     * HTTPS connection
     */
    @JsonProperty("HTTPS URL")
    public String httpsURL = null;
    
    @JsonProperty("HTTPS service")
    public String httpsService = null;
 
    @JsonProperty("User")
    public String user = null;
    
    @JsonProperty("password")
    public String password = null;
    
   
    
    /**
     * Polling and timeout in ms
     */
    @JsonProperty("Polling")
    public int polling = 5000;
        
    @JsonProperty("Timeout")
    public int timeout = 15000;
        
        
}