package art.servers.fleetserver.configuration;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import com.fasterxml.jackson.annotation.JsonRootName;
|
|
|
@JsonRootName(value = "Configuration DPS")
|
|
|
public class ConfigurationDPS
|
{
|
@JsonProperty("Name")
|
public String name = null;
|
|
/**
|
* Interop connection
|
*/
|
@JsonProperty("Service")
|
public String service = null;
|
|
|
/**
|
* HTTPS connection
|
*/
|
@JsonProperty("HTTPS URL")
|
public String httpsURL = null;
|
|
@JsonProperty("HTTPS service")
|
public String httpsService = null;
|
|
@JsonProperty("User")
|
public String user = null;
|
|
@JsonProperty("password")
|
public String password = null;
|
|
|
|
/**
|
* Polling and timeout in ms
|
*/
|
@JsonProperty("Polling")
|
public int polling = 5000;
|
|
@JsonProperty("Timeout")
|
public int timeout = 15000;
|
|
|
}
|