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. |
declareUpdate(); const sec = require('/MarkLogic/security.xqy'); sec.userSetExternalNames("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".
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.