Uses of Class
javax.net.ssl.SSLContext
-
Packages that use SSLContext Package Description com.sun.net.httpserver Provides a simple high-level Http server API, which can be used to build embedded HTTP servers.javax.net.ssl Provides classes for the secure socket package.javax.rmi.ssl Provides implementations ofRMIClientSocketFactoryandRMIServerSocketFactoryover the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) protocols.jdk.incubator.http High level HTTP and WebSocket API -
-
Uses of SSLContext in com.sun.net.httpserver
Methods in com.sun.net.httpserver that return SSLContext Modifier and Type Method Description SSLContextHttpsConfigurator. getSSLContext()Returns the SSLContext for this HttpsConfigurator.Constructors in com.sun.net.httpserver with parameters of type SSLContext Constructor Description HttpsConfigurator(SSLContext context)Creates an Https configuration, with the given SSLContext. -
Uses of SSLContext in javax.net.ssl
Methods in javax.net.ssl that return SSLContext Modifier and Type Method Description static SSLContextSSLContext. getDefault()Returns the default SSL context.static SSLContextSSLContext. getInstance(String protocol)Returns aSSLContextobject that implements the specified secure socket protocol.static SSLContextSSLContext. getInstance(String protocol, String provider)Returns aSSLContextobject that implements the specified secure socket protocol.static SSLContextSSLContext. getInstance(String protocol, Provider provider)Returns aSSLContextobject that implements the specified secure socket protocol.Methods in javax.net.ssl with parameters of type SSLContext Modifier and Type Method Description static voidSSLContext. setDefault(SSLContext context)Sets the default SSL context. -
Uses of SSLContext in javax.rmi.ssl
Constructors in javax.rmi.ssl with parameters of type SSLContext Constructor Description SslRMIServerSocketFactory(SSLContext context, String[] enabledCipherSuites, String[] enabledProtocols, boolean needClientAuth)Creates a newSslRMIServerSocketFactorywith the specifiedSSLContextand SSL socket configuration. -
Uses of SSLContext in jdk.incubator.http
Methods in jdk.incubator.http that return SSLContext Modifier and Type Method Description abstract SSLContextHttpClient. sslContext()Returns theSSLContext, if one was set on this client.Methods in jdk.incubator.http with parameters of type SSLContext Modifier and Type Method Description abstract HttpClient.BuilderHttpClient.Builder. sslContext(SSLContext sslContext)Sets anSSLContext.
-