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
| package art.servers.gost.access.configuration;
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
| @JsonPropertyOrder
| ({
| "Name",
| "Polling",
| "Minimum free space",
| "Disk",
| "Paths"
| })
|
|
| public class ConfigurationDetail_Cleaner
| {
| @JsonProperty("Name")
| public String name;
|
| @JsonProperty("Polling")
| public int polling;
|
| @JsonProperty("Minimum free space")
| public int minimumFreeSpace;
|
| @JsonProperty("Disk")
| public String disk;
|
| @JsonProperty("Paths")
| public String[] paths;
| }
|
|