sec.roleGetExternalNames

sec.roleGetExternalNames(
   role-name as String
) as Sequence

Summary

This function returns the external LDAP group names assigned to the named role.

Parameters
role-name The name of the role for which to return the external LDAP group names.

Example


(: execute this against the security database :)
xquery version "1.0-ml"; 
 
import module namespace sec = "http://marklogic.com/xdmp/security" 
      at "/MarkLogic/security.xqy";
 
sec:role-get-external-names("admin")

(: Returns the external LDAP group names for the "admin" role. :)    
Powered by MarkLogic Server | Terms of Use | Privacy Policy