diff options
author | Hans Nilsson <[email protected]> | 2014-10-30 14:18:37 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2014-10-30 14:18:37 +0100 |
commit | f75ac642ae6111e190b15e04c30fcc0b5c78968b (patch) | |
tree | 8e9db6b46be3da86cbea77853723595e7f9f3094 /lib/eldap/doc/src/eldap.xml | |
parent | 64a895f520f85545d931db45106ce220ea348e38 (diff) | |
parent | b05da7d6cd7a40e7dc9ef69b952f7a8d53c31fbc (diff) | |
download | otp-f75ac642ae6111e190b15e04c30fcc0b5c78968b.tar.gz otp-f75ac642ae6111e190b15e04c30fcc0b5c78968b.tar.bz2 otp-f75ac642ae6111e190b15e04c30fcc0b5c78968b.zip |
Merge branch 'hans/eldap/extensible_match_filter/OTP-12174' into maint
* hans/eldap/extensible_match_filter/OTP-12174:
eldap: vsn.mk updated.
eldap: extensibleMatch added.
Diffstat (limited to 'lib/eldap/doc/src/eldap.xml')
-rw-r--r-- | lib/eldap/doc/src/eldap.xml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/eldap/doc/src/eldap.xml b/lib/eldap/doc/src/eldap.xml index dbd478fb17..4417551aa8 100644 --- a/lib/eldap/doc/src/eldap.xml +++ b/lib/eldap/doc/src/eldap.xml @@ -48,7 +48,7 @@ scope() See baseObject/0, singleLevel/0, wholeSubtree/0 dereference() See neverDerefAliases/0, derefInSearching/0, derefFindingBaseObj/0, derefAlways/0 filter() See present/1, substrings/2, equalityMatch/2, greaterOrEqual/2, lessOrEqual/2, - approxMatch/2, + approxMatch/2, extensibleMatch/2, 'and'/1, 'or'/1, 'not'/1. </pre> <p></p> @@ -348,6 +348,16 @@ filter() See present/1, substrings/2, <desc> <p>Create a approximation match filter.</p> </desc> </func> <func> + <name>extensibleMatch(MatchValue, OptionalAttrs) -> filter()</name> + <fsummary>Create search filter option.</fsummary> + <type> + <v>MatchValue = string()</v> + <v>OptionalAttrs = [Attr]</v> + <v>Attr = {matchingRule,string()} | {type,string()} | {dnAttributes,boolean()}</v> + </type> + <desc> <p>Creates an extensible match filter. For example, <c>eldap:extensibleMatch("Bar",[{type,"sn"},{matchingRule,"caseExactMatch"}]))</c> creates a filter which performs a <c>caseExactMatch</c> on the attribute <c>sn</c> and matches with the value <c>"Bar"</c>. The default value of <c>dnAttributes</c> is <c>false</c>.</p> </desc> + </func> + <func> <name>'and'([Filter]) -> filter()</name> <fsummary>Create search filter option.</fsummary> <type> |