sec.userSetExternalNames( user-name as String, external-name as String[] ) as null
This function sets the external names for the named user.
Parameters | |
---|---|
user-name | The name of the user for which to set the external name. |
external-name | A sequence of one or more external names to be set for the user. |
(: 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:user-set-external-name("Jim", ("CN=TestUser 1,CN=Users,DC=DUDE,DC=LOCAL")) (: Sets the external name for the user, "Jim", to "CN=TestUser 1,CN=Users,DC=DUDE,DC=LOCAL". :)