Home Server Connection Config
@JsonClass(generateAdapter = true )
Content copied to clipboard
This data class holds how to connect to a specific Homeserver. It's used with org.matrix.android.sdk.api.auth.AuthenticationService class. You should use the Builder to create one.
Constructors
Link copied to clipboard
fun HomeServerConnectionConfig( homeServerUri: Uri, homeServerUriBase: Uri = homeServerUri, identityServerUri: Uri? = null, antiVirusServerUri: Uri? = null, allowedFingerprints: List<Fingerprint> = emptyList(), shouldPin: Boolean = false, tlsVersions: List<TlsVersion>? = null, tlsCipherSuites: List<CipherSuite>? = null, shouldAcceptTlsExtensions: Boolean = true, allowHttpExtension: Boolean = false, forceUsageTlsVersions: Boolean = false)
Content copied to clipboard
Types
Link copied to clipboard
This builder should be use to create a HomeServerConnectionConfig instance.