Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

You can append query options to the URI in the following format, ?option=value&option=value&...

Options

Div
classconfluenceTableSmall

Name

Default Value

Description

base

ou=system

The base DN for searches.

scope

subtree

Specifies how deeply to search the tree of entries, starting at the base DN. Value can be object, onelevel, or subtree.

pageSize

no paging used

Camel 2.6: When specified the ldap module uses paging to retrieve all results (most LDAP Servers throw an exception when trying to retrieve more than 1000 entries in one query). To be able to use this a LdapContext (subclass of DirContext) has to be passed in as ldapServerBean (otherwise an exception is thrown)

returnedAttributes

depends on LDAP Server (could be all or none)

Camel 2.6: Comma-separated list of attributes that should be set in each entry of the result

Wiki Markup
{div:class=confluenceTableSmall} || Name || Default Value || Description || | {{base}} | {{ou=system}} | The base DN for searches. | | {{scope}} | {{subtree}} | Specifies how deeply to search the tree of entries, starting at the base DN. Value can be {{object}}, {{onelevel}}, or {{subtree}}. | |pageSize | no paging used | *Camel 2.6:* When specified the ldap module uses paging to retrieve all results (most LDAP Servers throw an exception when trying to retrieve more than 1000 entries in one query). To be able to use this a LdapContext (subclass of DirContext) has to be passed in as ldapServerBean (otherwise an exception is thrown) | |returnedAttributes| depends on LDAP Server (could be all or none) | *Camel 2.6:* Comma-separated list of attributes that should be set in each entry of the result | {div}

Result

The result is returned in the Out body as a ArrayList<javax.naming.directory.SearchResult> object.

...