Uses of Class
org.ldaptive.ConnectionConfig
-
Packages that use ConnectionConfig Package Description org.ldaptive org.ldaptive.control.util org.ldaptive.props org.ldaptive.referral org.ldaptive.transport org.ldaptive.transport.netty -
-
Uses of ConnectionConfig in org.ldaptive
Fields in org.ldaptive declared as ConnectionConfig Modifier and Type Field Description private ConnectionConfig
DefaultConnectionFactory. config
Connection configuration used by this factory.private ConnectionConfig
ConnectionConfig.Builder. object
Methods in org.ldaptive that return ConnectionConfig Modifier and Type Method Description ConnectionConfig
ConnectionConfig.Builder. build()
static ConnectionConfig
ConnectionConfig. copy(ConnectionConfig config)
Returns a new connection config initialized with the supplied config.ConnectionConfig
ConnectionFactory. getConnectionConfig()
Returns the connection configuration used to create connections.ConnectionConfig
DefaultConnectionFactory. getConnectionConfig()
ConnectionConfig
PooledConnectionFactory. getConnectionConfig()
Methods in org.ldaptive with parameters of type ConnectionConfig Modifier and Type Method Description DefaultConnectionFactory.Builder
DefaultConnectionFactory.Builder. config(ConnectionConfig cc)
PooledConnectionFactory.Builder
PooledConnectionFactory.Builder. config(ConnectionConfig cc)
SingleConnectionFactory.Builder
SingleConnectionFactory.Builder. config(ConnectionConfig config)
static ConnectionConfig
ConnectionConfig. copy(ConnectionConfig config)
Returns a new connection config initialized with the supplied config.void
DefaultConnectionFactory. setConnectionConfig(ConnectionConfig cc)
Sets the connection config.void
PooledConnectionFactory. setConnectionConfig(ConnectionConfig cc)
Sets the connection config.Constructors in org.ldaptive with parameters of type ConnectionConfig Constructor Description DefaultConnectionFactory(ConnectionConfig cc)
Creates a new default connection factory.DefaultConnectionFactory(ConnectionConfig cc, Transport t)
Creates a new default connection factory.PooledConnectionFactory(ConnectionConfig cc)
Creates a new pooled connection factory.PooledConnectionFactory(ConnectionConfig cc, Transport t)
Creates a new pooled connection factory.SingleConnectionFactory(ConnectionConfig cc)
Creates a new single connection factory.SingleConnectionFactory(ConnectionConfig cc, Transport t)
Creates a new single connection factory. -
Uses of ConnectionConfig in org.ldaptive.control.util
Methods in org.ldaptive.control.util with parameters of type ConnectionConfig Modifier and Type Method Description static SingleConnectionFactory
SyncReplRunner. createConnectionFactory(ConnectionConfig config)
Creates a new single connection factory.static SingleConnectionFactory
SyncReplRunner. createConnectionFactory(ConnectionConfig config, ConnectionValidator validator)
Creates a new single connection factory.static SingleConnectionFactory
SyncReplRunner. createConnectionFactory(Transport transport, ConnectionConfig config, ConnectionValidator validator)
Creates a new single connection factory. -
Uses of ConnectionConfig in org.ldaptive.props
Constructors in org.ldaptive.props with parameters of type ConnectionConfig Constructor Description ConnectionConfigPropertySource(ConnectionConfig cc)
Creates a new connection config property source using the default properties file.ConnectionConfigPropertySource(ConnectionConfig cc, Reader... readers)
Creates a new connection config property source.ConnectionConfigPropertySource(ConnectionConfig cc, String... paths)
Creates a new connection config property source.ConnectionConfigPropertySource(ConnectionConfig cc, Properties props)
Creates a new connection config property source.ConnectionConfigPropertySource(ConnectionConfig cc, PropertySource.PropertyDomain domain, Properties props)
Creates a new connection config property source. -
Uses of ConnectionConfig in org.ldaptive.referral
Fields in org.ldaptive.referral declared as ConnectionConfig Modifier and Type Field Description private ConnectionConfig
DefaultReferralConnectionFactory. connectionConfig
Connection config for referrals.Constructors in org.ldaptive.referral with parameters of type ConnectionConfig Constructor Description DefaultReferralConnectionFactory(ConnectionConfig config)
Creates a new default referral connection factory. -
Uses of ConnectionConfig in org.ldaptive.transport
Fields in org.ldaptive.transport declared as ConnectionConfig Modifier and Type Field Description protected ConnectionConfig
TransportConnection. connectionConfig
Provides host connection configuration.Methods in org.ldaptive.transport with parameters of type ConnectionConfig Modifier and Type Method Description Connection
Transport. create(ConnectionConfig cc)
Create a connection object.Constructors in org.ldaptive.transport with parameters of type ConnectionConfig Constructor Description TransportConnection(ConnectionConfig config)
Creates a new transport connection. -
Uses of ConnectionConfig in org.ldaptive.transport.netty
Methods in org.ldaptive.transport.netty with parameters of type ConnectionConfig Modifier and Type Method Description Connection
ConnectionTransport. create(ConnectionConfig cc)
Connection
NettyConnectionFactoryTransport. create(ConnectionConfig cc)
private io.netty.handler.ssl.SslHandler
NettyConnection. createSslHandler(ConnectionConfig config)
Creates a Netty SSL handler using the supplied connection config.Constructors in org.ldaptive.transport.netty with parameters of type ConnectionConfig Constructor Description NettyConnection(ConnectionConfig config, Class<? extends io.netty.channel.Channel> type, io.netty.channel.EventLoopGroup ioGroup, io.netty.channel.EventLoopGroup messageGroup, boolean shutdownGroups)
Creates a new connection.
-