Alejandro Acuña
2024-07-30 65a64a81d30f00f1fffd5da6866850e1308e1135
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
package art.servers.configuration;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
 
 
@JsonRootName(value = "Listener")
 
public class ConfigurationListener 
{
    @JsonProperty("Address")
    public String address;
 
    @JsonProperty("Port")
    public int port;
 
    @JsonProperty("Address external")
    public String addressExternal;
 
    @JsonProperty("Port external")
    public int portExternal;
 
    @JsonProperty("Timeout")
    public int timeout;
 
    @JsonProperty("Connections")
    public int connections;
    
}