
sec:user-set-password( $user-name as xs:string, $password as xs:string ) as empty-sequence()
Changes the password for the user identified by $user-name to $password.
| Parameters | |
|---|---|
| user-name | The name of the user. |
| password | The new password. If $password is the empty string, an error is returned. |
http://marklogic.com/xdmp/privileges/user-set-password
if the currrent user is not $user-name.
This function must be executed against the security database.
(: 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-password("Jim", "temp")
(: Changes the password for the user, "Jim," to "temp." :)