asd
Alejandro Acuña
2024-09-16 816cb391a192e357426312ab8e591fd49d1d242e
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package art.servers.gost.access.configuration;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
 
 
@JsonPropertyOrder
({ 
    "Keystore location",
    "Keystore password",
    "Keystore type",
    "Certificate alias",
    "Certificate password",
    "Endpoint",
    "Version",
    "User identifier",
    "Organism identifier",
    "Responsible identifier",
    "Debug"
})
 
 
public class ConfigurationDetail_ATEX5
{
    /**
     * JsonProperty("Keystore location")
     */
    @JsonProperty("Keystore location")
    public String keystoreLocation = null;    
 
    /**
     * JsonProperty("Keystore password")
     */
    @JsonProperty("Keystore password")
    public String keystorePassword = null;    
 
    /**
     * JsonProperty("Keystore type")
     */
    @JsonProperty("Keystore type")
    public String keystoreType = null;    
    
    /**
     * JsonProperty("Certificate alias")
     */
    @JsonProperty("Certificate alias")
    public String certificateAlias = null;    
    
    /**
     * JsonProperty("Certificate password")
     */
    @JsonProperty("Certificate password")
    public String certificatePassword = null;    
    
    /**
     * JsonProperty("Endpoint")
     */
    @JsonProperty("Endpoint")
    public String endpoint = null;    
    
    /**
     * JsonProperty("Version")
     */
    @JsonProperty("Version")
    public String version = null;    
    
    /**
     * JsonProperty("User identifier")
     */
    @JsonProperty("User identifier")
    public String userIdentifier = null;    
    
    /**
     * JsonProperty("Organism identifier")
     */
    @JsonProperty("Organism identifier")
    public String organismIdentifier = null;    
    
    /**
     * JsonProperty("Responsible identifier")
     */
    @JsonProperty("Responsible identifier")
    public String responsibleIdentifier = null;    
    
    /**
     * JsonProperty("Debug")
     */
    @JsonProperty("Debug")
    public boolean debug = false;
}