org.whispersystems.signalservice.internal.configuration.SignalSvr2Url.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signal-service-java Show documentation
Show all versions of signal-service-java Show documentation
Signal Service communication library for Java, unofficial fork
package org.whispersystems.signalservice.internal.configuration
import okhttp3.ConnectionSpec
import org.whispersystems.signalservice.api.push.TrustStore
/**
* Configuration for reach the SVR2 service.
*/
class SignalSvr2Url(
url: String,
trustStore: TrustStore,
hostHeader: String? = null,
connectionSpec: ConnectionSpec? = null
) : SignalUrl(url, hostHeader, trustStore, connectionSpec)