Interface LdapEndpointBuilderFactory.LdapBuilders

    • Method Detail

      • ldap

        default LdapEndpointBuilderFactory.LdapEndpointBuilder ldap​(String path)
        LDAP (camel-ldap) Perform searches on LDAP servers. Category: search,ldap Since: 1.5 Maven coordinates: org.apache.camel:camel-ldap Syntax: ldap:dirContextName Path parameter: dirContextName (required) Name of either a javax.naming.directory.DirContext, or java.util.Hashtable, or Map bean to lookup in the registry. If the bean is either a Hashtable or Map then a new javax.naming.directory.DirContext instance is created for each use. If the bean is a javax.naming.directory.DirContext then the bean is used as given. The latter may not be possible in all situations where the javax.naming.directory.DirContext must not be shared, and in those situations it can be better to use java.util.Hashtable or Map instead.
        Parameters:
        path - dirContextName
        Returns:
        the dsl builder
      • ldap

        default LdapEndpointBuilderFactory.LdapEndpointBuilder ldap​(String componentName,
                                                                    String path)
        LDAP (camel-ldap) Perform searches on LDAP servers. Category: search,ldap Since: 1.5 Maven coordinates: org.apache.camel:camel-ldap Syntax: ldap:dirContextName Path parameter: dirContextName (required) Name of either a javax.naming.directory.DirContext, or java.util.Hashtable, or Map bean to lookup in the registry. If the bean is either a Hashtable or Map then a new javax.naming.directory.DirContext instance is created for each use. If the bean is a javax.naming.directory.DirContext then the bean is used as given. The latter may not be possible in all situations where the javax.naming.directory.DirContext must not be shared, and in those situations it can be better to use java.util.Hashtable or Map instead.
        Parameters:
        componentName - to use a custom component name for the endpoint instead of the default name
        path - dirContextName
        Returns:
        the dsl builder