Uses of Class
javax.net.ssl.SSLParameters
-
Packages that use SSLParameters 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.jdk.incubator.http High level HTTP and WebSocket API -
-
Uses of SSLParameters in com.sun.net.httpserver
Methods in com.sun.net.httpserver with parameters of type SSLParameters Modifier and Type Method Description abstract voidHttpsParameters. setSSLParameters(SSLParameters params)Sets the SSLParameters to use for this HttpsParameters. -
Uses of SSLParameters in javax.net.ssl
Methods in javax.net.ssl that return SSLParameters Modifier and Type Method Description protected SSLParametersSSLContextSpi. engineGetDefaultSSLParameters()Returns a copy of the SSLParameters indicating the default settings for this SSL context.protected SSLParametersSSLContextSpi. engineGetSupportedSSLParameters()Returns a copy of the SSLParameters indicating the maximum supported settings for this SSL context.SSLParametersSSLContext. getDefaultSSLParameters()Returns a copy of the SSLParameters indicating the default settings for this SSL context.SSLParametersSSLEngine. getSSLParameters()Returns the SSLParameters in effect for this SSLEngine.SSLParametersSSLServerSocket. getSSLParameters()Returns the SSLParameters in effect for newly accepted connections.SSLParametersSSLSocket. getSSLParameters()Returns the SSLParameters in effect for this SSLSocket.SSLParametersSSLContext. getSupportedSSLParameters()Returns a copy of the SSLParameters indicating the supported settings for this SSL context.Methods in javax.net.ssl with parameters of type SSLParameters Modifier and Type Method Description voidSSLEngine. setSSLParameters(SSLParameters params)Applies SSLParameters to this engine.voidSSLServerSocket. setSSLParameters(SSLParameters params)Applies SSLParameters to newly accepted connections.voidSSLSocket. setSSLParameters(SSLParameters params)Applies SSLParameters to this socket. -
Uses of SSLParameters in jdk.incubator.http
Methods in jdk.incubator.http that return SSLParameters Modifier and Type Method Description abstract SSLParametersHttpResponse. sslParameters()Returns theSSLParametersin effect for this response.Methods in jdk.incubator.http that return types with arguments of type SSLParameters Modifier and Type Method Description abstract Optional<SSLParameters>HttpClient. sslParameters()Returns anOptionalcontaining theSSLParametersset on this client.Methods in jdk.incubator.http with parameters of type SSLParameters Modifier and Type Method Description abstract HttpClient.BuilderHttpClient.Builder. sslParameters(SSLParameters sslParameters)Sets anSSLParameters.
-