Package akka.http.javadsl
Class ConnectionContext$
- java.lang.Object
-
- akka.http.javadsl.ConnectionContext$
-
public class ConnectionContext$ extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static ConnectionContext$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description ConnectionContext$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HttpsConnectionContext
httpsClient(akka.japi.function.Function2<java.lang.String,java.lang.Integer,javax.net.ssl.SSLEngine> createEngine)
If you want complete control over how to create the SSLEngine you can use this method.HttpsConnectionContext
httpsClient(javax.net.ssl.SSLContext sslContext)
Creates an HttpsConnectionContext for client-side use from the given SSLContext.HttpsConnectionContext
httpsServer(akka.japi.function.Creator<javax.net.ssl.SSLEngine> createEngine)
If you want complete control over how to create the SSLEngine you can use this method.HttpsConnectionContext
httpsServer(javax.net.ssl.SSLContext sslContext)
Creates an HttpsConnectionContext for server-side use from the given SSLContext.HttpConnectionContext
noEncryption()
Used to serve HTTP traffic.
-
-
-
Field Detail
-
MODULE$
public static final ConnectionContext$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
httpsServer
public HttpsConnectionContext httpsServer(javax.net.ssl.SSLContext sslContext)
Creates an HttpsConnectionContext for server-side use from the given SSLContext.- Parameters:
sslContext
- (undocumented)- Returns:
- (undocumented)
-
httpsServer
public HttpsConnectionContext httpsServer(akka.japi.function.Creator<javax.net.ssl.SSLEngine> createEngine)
If you want complete control over how to create the SSLEngine you can use this method.- Parameters:
createEngine
- (undocumented)- Returns:
- (undocumented)
-
httpsClient
public HttpsConnectionContext httpsClient(javax.net.ssl.SSLContext sslContext)
Creates an HttpsConnectionContext for client-side use from the given SSLContext.- Parameters:
sslContext
- (undocumented)- Returns:
- (undocumented)
-
httpsClient
public HttpsConnectionContext httpsClient(akka.japi.function.Function2<java.lang.String,java.lang.Integer,javax.net.ssl.SSLEngine> createEngine)
If you want complete control over how to create the SSLEngine you can use this method.Note that this means it is up to you to make sure features like SNI and hostname verification are enabled as needed.
- Parameters:
createEngine
- (undocumented)- Returns:
- (undocumented)
-
noEncryption
public HttpConnectionContext noEncryption()
Used to serve HTTP traffic.
-
-