Uses of Interface
com.rabbitmq.client.SslEngineConfigurator
-
Packages that use SslEngineConfigurator Package Description com.rabbitmq.client The client API proper: classes and interfaces representing the AMQP connections, channels, and wire-protocol framing descriptors.com.rabbitmq.client.impl.nio NIO network connector. -
-
Uses of SslEngineConfigurator in com.rabbitmq.client
Fields in com.rabbitmq.client declared as SslEngineConfigurator Modifier and Type Field Description private SslEngineConfigurator
SslEngineConfigurators.Builder. configurator
static SslEngineConfigurator
SslEngineConfigurators. DEFAULT
DefaultSslEngineConfigurator
, does nothing.static SslEngineConfigurator
SslEngineConfigurators. ENABLE_HOSTNAME_VERIFICATION
SslEngineConfigurator
that enables server hostname verification.Methods in com.rabbitmq.client that return SslEngineConfigurator Modifier and Type Method Description default SslEngineConfigurator
SslEngineConfigurator. andThen(SslEngineConfigurator after)
Returns a composed configurator that performs, in sequence, this operation followed by theafter
operation.SslEngineConfigurator
SslEngineConfigurators.Builder. build()
Return the configuredSslEngineConfigurator
.static SslEngineConfigurator
SslEngineConfigurators. defaultConfigurator()
DefaultSslEngineConfigurator
, does nothing.static SslEngineConfigurator
SslEngineConfigurators. enableHostnameVerification()
SslEngineConfigurator
that enables server hostname verification.Methods in com.rabbitmq.client with parameters of type SslEngineConfigurator Modifier and Type Method Description SslEngineConfigurators.Builder
SslEngineConfigurators.Builder. add(SslEngineConfigurator extraConfiguration)
Add extra configuration step.default SslEngineConfigurator
SslEngineConfigurator. andThen(SslEngineConfigurator after)
Returns a composed configurator that performs, in sequence, this operation followed by theafter
operation. -
Uses of SslEngineConfigurator in com.rabbitmq.client.impl.nio
Fields in com.rabbitmq.client.impl.nio declared as SslEngineConfigurator Modifier and Type Field Description private SslEngineConfigurator
NioParams. sslEngineConfigurator
the hook to configure the SSL engine before the connection is openMethods in com.rabbitmq.client.impl.nio that return SslEngineConfigurator Modifier and Type Method Description SslEngineConfigurator
NioParams. getSslEngineConfigurator()
Methods in com.rabbitmq.client.impl.nio with parameters of type SslEngineConfigurator Modifier and Type Method Description void
NioParams. setSslEngineConfigurator(SslEngineConfigurator configurator)
Set theSSLEngine
configurator.
-