Uses of Class
org.forgerock.opendj.ldap.ConnectionSecurity
-
Packages that use ConnectionSecurity Package Description org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.opends.server.protocols.ldap Contains the implementation for the Directory Server connection handler that is responsible for interacting with clients using LDAPv3.org.opends.server.replication.common This package contains utilities that can are used by all the packages below org.opends.server.replication.org.opends.server.util Contains implementations for various Directory Server utility classes and methods which may be used throughout the server but do not necessarily fit in elsewhere. -
-
Uses of ConnectionSecurity in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return ConnectionSecurity Modifier and Type Method Description static ConnectionSecurity
ConnectionSecurity. connectionSecurity(boolean useSsl, boolean useStartTls)
Returns the connection security equivalent to the provideduseSsl
anduseStartTls
boolean parameters.static ConnectionSecurity
ConnectionSecurity. valueOf(String name)
Returns the enum constant of this type with the specified name.static ConnectionSecurity[]
ConnectionSecurity. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of ConnectionSecurity in org.opends.server.protocols.ldap
Methods in org.opends.server.protocols.ldap that return ConnectionSecurity Modifier and Type Method Description ConnectionSecurity
LDAPConnectionHandler. getConnectionSecurity()
Indicates the connection security used by this connection handler. -
Uses of ConnectionSecurity in org.opends.server.replication.common
Methods in org.opends.server.replication.common that return types with arguments of type ConnectionSecurity Modifier and Type Method Description Map<ConnectionSecurity,Set<com.forgerock.opendj.util.HostPort>>
DSInfo. getLdapEndpoints()
Returns all the LDAP(s) host port(s) opened by this server.Methods in org.opends.server.replication.common with parameters of type ConnectionSecurity Modifier and Type Method Description void
Topology. addLocalLdapPorts(ConnectionSecurity connSecurity, Collection<com.forgerock.opendj.util.HostPort> ldapEndpoints)
Adds LDAP (LDAPS / StartTLS) host ports to the local server.void
Topology. removeLocalLdapPorts(ConnectionSecurity connSecurity, Collection<com.forgerock.opendj.util.HostPort> ldapEndpoints)
Removes LDAP (LDAPS / StartTLS) host ports from the local server.Constructor parameters in org.opends.server.replication.common with type arguments of type ConnectionSecurity Constructor Description DSInfo(ReplicaId replicaId, com.forgerock.opendj.util.HostPort adminEndpoint, ReplicationServerId rsId, GenerationId generationId, ServerStatus status, com.forgerock.opendj.discovery.GroupId groupId, ProcessId processId, Set<String> refUrls, Set<String> eclIncludes, Set<String> eclIncludesForDeletes, short protocolVersion, Set<com.forgerock.opendj.util.HostPort> adminEndpoints, Map<ConnectionSecurity,Set<com.forgerock.opendj.util.HostPort>> ldapEndpoints)
Creates a new instance of DSInfo with every given info. -
Uses of ConnectionSecurity in org.opends.server.util
Methods in org.opends.server.util with parameters of type ConnectionSecurity Modifier and Type Method Description static Options
SslUtils. createOptionsForSslContext(Dn trustManagerProviderDn, Dn keyManagerProviderDn, String friendlyName, SortedSet<String> sslCertNicknames, SortedSet<String> sslCipherSuites, SortedSet<String> sslProtocols, ServerContext serverContext, ConnectionSecurity connectionSecurity)
Create SSL communicationsOptions
for an SSL context.
-