Uses of Class
org.forgerock.opendj.security.SslOptions
-
Packages that use SslOptions Package Description org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.forgerock.opendj.ldap.messages Classes and interfaces for core LDAP requests/responses.org.forgerock.opendj.security An LDAP based security provider having the name "OpenDJ" and exposing an LDAP/LDIF basedKeyStore
service.org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.protocols Contains various Directory Server connection handler implementations which will be used to accept connections from and perform communication with clients over various protocols.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 SslOptions in org.forgerock.opendj.ldap
Fields in org.forgerock.opendj.ldap with type parameters of type SslOptions Modifier and Type Field Description static Option<SslOptions>
CommonLdapOptions. SSL_OPTIONS
Specifies the options to use for the SSL support ornull
if SSL is disabled.static Option<SslOptions>
CommonLdapOptions. SSL_OPTIONS
Specifies the options to use for the SSL support ornull
if SSL is disabled.static Option<SslOptions>
CommonLdapOptions. SSL_OPTIONS
Specifies the options to use for the SSL support ornull
if SSL is disabled. -
Uses of SslOptions in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return SslOptions Modifier and Type Method Description SslOptions
StartTlsExtendedRequest. getSslOptions()
Returns the SslOptions that should be used when installing the TLS layer.SslOptions
StartTlsExtendedResult. getSslOptions()
Returns theSslOptions
used to install the TLS layer.Methods in org.forgerock.opendj.ldap.messages with parameters of type SslOptions Modifier and Type Method Description static StartTlsExtendedRequest
Requests. newStartTlsExtendedRequest(SslOptions sslOptions)
Creates a new start TLS extended request which will use the provided SSL context.StartTlsExtendedRequest
StartTlsExtendedRequest. setSslOptions(SslOptions sslOptions)
Sets the SslOptions that should be used when installing the TLS layer.StartTlsExtendedResult
StartTlsExtendedResult. setSslOptions(SslOptions sslOptions)
Sets theSslOptions
used to install the TLS layer. -
Uses of SslOptions in org.forgerock.opendj.security
Methods in org.forgerock.opendj.security that return SslOptions Modifier and Type Method Description SslOptions
SslOptions. clientAuthPolicy(SslOptions.ClientAuthPolicy clientAuthPolicy)
Sets the client auth policy.static SslOptions
SslOptions. copyOfSslOptions(SslOptions sslOptions)
Creates a copy of the providedSslOptions
.SslOptions
SslOptions. enabledCipherSuites(String... cipherSuites)
Adds the cipher suites enabled for secure connections with the Directory Server.SslOptions
SslOptions. enabledCipherSuites(Collection<String> cipherSuites)
Adds the cipher suites enabled for secure connections with the Directory Server.SslOptions
SslOptions. enabledProtocols(String... protocols)
Adds the protocol versions enabled for secure connections with the Directory Server.SslOptions
SslOptions. enabledProtocols(Collection<String> protocols)
Adds the protocol versions enabled for secure connections with the Directory Server.static SslOptions
SslOptions. newSslOptions(KeyManager[] keyManagers, TrustManager[] trustManagers)
Creates a newSslOptions
for the provided key managers and trust managers.static SslOptions
SslOptions. newSslOptions(KeyManager keyManager, TrustManager trustManager)
Creates a newSslOptions
for the provided key manager and trust manager.Methods in org.forgerock.opendj.security with parameters of type SslOptions Modifier and Type Method Description static SslOptions
SslOptions. copyOfSslOptions(SslOptions sslOptions)
Creates a copy of the providedSslOptions
.static SSLEngine
SslOptions. newClientSslEngine(SslOptions sslOptions, String host, int port)
Creates a newSSLEngine
configured to be used by a client application.static SSLEngine
SslOptions. newServerSslEngine(SslOptions sslOptions)
Creates a newSSLEngine
configured to be used by a server application. -
Uses of SslOptions in org.opends.server.api
Methods in org.opends.server.api with parameters of type SslOptions Modifier and Type Method Description protected void
ClientConnection. sendResponse(Operation operation, int ldapVersion, SslOptions startTlsOptions)
Removes the provided operation from the set of operations in progress of this client connection and sends a response to the client based on the information in the provided operation. -
Uses of SslOptions in org.opends.server.protocols
Methods in org.opends.server.protocols with parameters of type SslOptions Modifier and Type Method Description static Result
ReactiveHandlersUtils. operationToResult(Operation operation, int ldapVersion, long connectionId, SslOptions sslOptions)
Generates a result from the provided operation. -
Uses of SslOptions in org.opends.server.util
Methods in org.opends.server.util that return SslOptions Modifier and Type Method Description static SslOptions
SslUtils. createSslOptions(Collection<Dn> trustManagerProviderDns, Dn keyManagerProviderDn, String friendlyName, SortedSet<String> sslCertNicknames, SortedSet<String> sslCipherSuites, SortedSet<String> sslProtocols, ServerContext serverContext)
CreatesSslOptions
for the provided parameters.
-