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
package art.servers.configuration;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
 
 
@JsonPropertyOrder
({ 
    "Read password",
    "Download password",
    "Write password",
    "Admin password", 
    "Storage password",
    "System password"
})
 
 
 
 
public class ConfigurationSecurity
{
    @JsonProperty("Read password")
    public String readPassword = null;
 
    @JsonProperty("Download password")
    public String downloadPassword = null;
 
    @JsonProperty("Write password")
    public String writePassword = null;
 
    @JsonProperty("Admin password")
    public String adminPassword = null;
 
    @JsonProperty("Storage password")
    public String storagePassword = null;
 
    @JsonProperty("System password")
    public String systemPassword = null;
 
}