Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs with 1.0.13 releaes #54

Merged
merged 3 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The LDAP [Connector](https://docs.wso2.com/display/EI650/Working+with+Connectors

| Connector version | Supported WSO2 ESB/EI version |
| ------------- | ------------- |
| [1.0.13](https://github.com/wso2-extensions/esb-connector-ldap/releases/tag/v1.0.13) | EI 6.6.0, EI 7.x, MI 4.x.x |
| [1.0.12](https://github.com/wso2-extensions/esb-connector-ldap/tree/org.wso2.carbon.connector.ldap-1.0.12) | EI 6.4.0, EI 7.x |
| [1.0.11](https://github.com/wso2-extensions/esb-connector-ldap/tree/org.wso2.carbon.connector.ldap-1.0.11) | EI 7.x |
| [1.0.10](https://github.com/wso2-extensions/esb-connector-ldap/tree/org.wso2.carbon.connector.ldap-1.0.10) | EI 6.4.0, EI 6.5.0 |
Expand Down
2 changes: 2 additions & 0 deletions docs/crud_ops.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ The searchEntry operation performs a search for one or more LDAP entities based
<attributes>{$ctx:attributes}</attributes>
<onlyOneReference>{$ctx:onlyOneReference}</onlyOneReference>
<limit>1000</limit>
<allowEmptySearchResult>{$ctx:allowEmptySearchResult}</allowEmptySearchResult>
</ldap.searchEntry>
```

Expand All @@ -101,6 +102,7 @@ The searchEntry operation performs a search for one or more LDAP entities based
* scope : LDAP search scope to retrieve results. By default `SUBTREE` scope is set. Provide `OBJECT` to set scope to object level and `ONE_LEVEL` to set one level scope.
* onlyOneReference : Boolean value whether to guarantee or not only one reference.
* limit : This allows you to set a limit on the number of search results. If this property is not defined the maximum no of search results will be returned.
* allowEmptySearchResult : Boolean value to allow empty Search Result or throw Exception. If this property is not defined, an exception will be thrown and fault sequence is executed if the search result is empty.

**Sample request**

Expand Down