sec.externalSecuritySetLdapNestedLookup

sec.externalSecuritySetLdapNestedLookup(
   external-security-name as String,
   ldap-nested-lookup as Boolean
) as null

Summary

This function sets the nested-lookup boolean. This boolean tells the LDAP server to do nested group lookup or not. Default value is true.

Parameters
external-security-name The name of external authentication configuration.
ldap-nested-lookup Specifies whether the ldap server will do nested group lookup or not.

Example


declareUpdate();
const sec = require('/MarkLogic/security');

sec.externalSecuritySetLdapNestedLookup('ldapConfig', false); 
   
Powered by MarkLogic Server | Terms of Use | Privacy Policy