LDAP
JVM since1.1.0 Native since3.2.0
Perform searches on LDAP servers.
What’s inside
-
LDAP component, URI syntax:
ldap:dirContextName
Please refer to the above link for usage and configuration details.
Maven coordinates
Or add the coordinates to your existing project:
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-ldap</artifactId>
</dependency>
Check the User guide for more information about writing Camel Quarkus applications.
Usage
Using SSL in Native Mode
When using a custom SSLSocketFactory
in native mode, such as the one in the Configuring SSL section, you need to register the class for reflection otherwise the class will not be made available on the classpath. Add the @RegisterForReflection
annotation above the class definition, as follows:
@RegisterForReflection
public class CustomSSLSocketFactory extends SSLSocketFactory {
// The class definition is the same as in the above link.
}