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;
|
}
|