Class NetworkSettings
Class NetworkSettings
- java.lang.Object
-
- com.here.sdk.core.engine.NetworkSettings
-
public final class NetworkSettings extends java.lang.ObjectNetwork configuration to be used by
SDKNativeEngineduring the initialization.
-
-
Field Summary
Fields Modifier and Type Field Description CertificateSettingscertificatesCertificate settings Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors.java.lang.StringdiagnosticsOutputPathFile path to be used for redirecting CURL verbose output.java.util.List<NetworkEndpoint>domainNameSystemServersDomain Name Server list.ProxySettingsproxySettingsProxy settings.
-
Constructor Summary
Constructors Constructor Description NetworkSettings()Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
proxySettings
@Nullable public ProxySettings proxySettings
Proxy settings. It can be later accessed or changed with
SDKNativeEngine.getProxySettings().
-
domainNameSystemServers
@NonNull public java.util.List<NetworkEndpoint> domainNameSystemServers
Domain Name Server list. This list fully replaces embedded mechanism to detect DNS. The order is important. To reduce response time make sure that most probably servers are at the beginning. Currently only IPv4 is supported.
-
certificates
@Nullable public CertificateSettings certificates
Certificate settings Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
diagnosticsOutputPath
@Nullable public java.lang.String diagnosticsOutputPath
File path to be used for redirecting CURL verbose output. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
-