1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package art.servers.configuration;
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import com.fasterxml.jackson.annotation.JsonRootName;
|
| @JsonRootName(value = "Configuration transactions service")
|
| public class ConfigurationTransactionsService
| {
| @JsonProperty("Service")
| public String service;
|
| @JsonProperty("Address")
| public String address;
|
| @JsonProperty("Port")
| public int port;
|
| @JsonProperty("Timeout")
| public int timeout;
| }
|
|