Uses of Class
org.apache.hc.core5.reactor.ssl.SSLBufferMode
-
Packages that use SSLBufferMode Package Description org.apache.hc.core5.http.nio.ssl TLS protocol support.org.apache.hc.core5.http2.ssl HTTP/2 specific TLS protocol support.org.apache.hc.core5.reactor Event driven network communication APIs and components loosely based on Doug Lea's reactor pattern.org.apache.hc.core5.reactor.ssl TLS/SSL support for I/O reactors. -
-
Uses of SSLBufferMode in org.apache.hc.core5.http.nio.ssl
Fields in org.apache.hc.core5.http.nio.ssl declared as SSLBufferMode Modifier and Type Field Description private SSLBufferModeBasicClientTlsStrategy. sslBufferModeprivate SSLBufferModeBasicServerTlsStrategy. sslBufferModeConstructors in org.apache.hc.core5.http.nio.ssl with parameters of type SSLBufferMode Constructor Description BasicClientTlsStrategy(javax.net.ssl.SSLContext sslContext, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier)BasicServerTlsStrategy(javax.net.ssl.SSLContext sslContext, SecurePortStrategy securePortStrategy, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier)BasicServerTlsStrategy(javax.net.ssl.SSLContext sslContext, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier) -
Uses of SSLBufferMode in org.apache.hc.core5.http2.ssl
Fields in org.apache.hc.core5.http2.ssl declared as SSLBufferMode Modifier and Type Field Description private SSLBufferModeH2ClientTlsStrategy. sslBufferModeprivate SSLBufferModeH2ServerTlsStrategy. sslBufferModeConstructors in org.apache.hc.core5.http2.ssl with parameters of type SSLBufferMode Constructor Description H2ClientTlsStrategy(javax.net.ssl.SSLContext sslContext, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier)H2ServerTlsStrategy(javax.net.ssl.SSLContext sslContext, SecurePortStrategy securePortStrategy, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier)H2ServerTlsStrategy(javax.net.ssl.SSLContext sslContext, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier) -
Uses of SSLBufferMode in org.apache.hc.core5.reactor
Methods in org.apache.hc.core5.reactor with parameters of type SSLBufferMode Modifier and Type Method Description voidInternalDataChannel. startTls(javax.net.ssl.SSLContext sslContext, NamedEndpoint endpoint, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier, Timeout handshakeTimeout)voidInternalDataChannel. startTls(javax.net.ssl.SSLContext sslContext, NamedEndpoint endpoint, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier, Timeout handshakeTimeout, FutureCallback<TransportSecurityLayer> callback) -
Uses of SSLBufferMode in org.apache.hc.core5.reactor.ssl
Methods in org.apache.hc.core5.reactor.ssl that return SSLBufferMode Modifier and Type Method Description static SSLBufferModeSSLBufferMode. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SSLBufferMode[]SSLBufferMode. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.hc.core5.reactor.ssl with parameters of type SSLBufferMode Modifier and Type Method Description (package private) static SSLManagedBufferSSLManagedBuffer. create(SSLBufferMode mode, int size)voidTransportSecurityLayer. startTls(javax.net.ssl.SSLContext sslContext, NamedEndpoint endpoint, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier, Timeout handshakeTimeout)Starts TLS session over an existing network connection with the given SSL context.default voidTransportSecurityLayer. startTls(javax.net.ssl.SSLContext sslContext, NamedEndpoint endpoint, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier, Timeout handshakeTimeout, FutureCallback<TransportSecurityLayer> callback)Starts TLS session over an existing network connection with the given SSL context.Constructors in org.apache.hc.core5.reactor.ssl with parameters of type SSLBufferMode Constructor Description SSLIOSession(NamedEndpoint targetEndpoint, IOSession session, SSLMode sslMode, javax.net.ssl.SSLContext sslContext, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier, Callback<SSLIOSession> sessionStartCallback, Callback<SSLIOSession> sessionEndCallback, Timeout connectTimeout)Creates new instance ofSSLIOSessionclass.SSLIOSession(NamedEndpoint targetEndpoint, IOSession session, SSLMode sslMode, javax.net.ssl.SSLContext sslContext, SSLBufferMode sslBufferMode, SSLSessionInitializer initializer, SSLSessionVerifier verifier, Timeout handshakeTimeout, Callback<SSLIOSession> sessionStartCallback, Callback<SSLIOSession> sessionEndCallback, FutureCallback<javax.net.ssl.SSLSession> resultCallback)Creates new instance ofSSLIOSessionclass.
-