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
| package art.servers.fleetserver.configuration;
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import com.fasterxml.jackson.annotation.JsonRootName;
|
|
| @JsonRootName(value = "Configuration radio")
|
|
| public class ConfigurationRadio
| {
| @JsonProperty("Name")
| public String name;
|
| @JsonProperty("Type")
| public String type;
|
| @JsonProperty("Address")
| public String address;
|
| @JsonProperty("Port")
| public int port;
|
| @JsonProperty("Timeout")
| public int timeout;
|
| @JsonProperty("SSI")
| public String SSI;
|
| @JsonProperty("TSI")
| public String TSI;
|
| }
|
|