sec:user-set-password-extra

sec:user-set-password-extra(
   $user-name as xs:string,
   $extra as element(sec:password-extra)
) as empty-sequence()

Summary

This function sets extra information for the specified user. If the user does not exist, an exception is thrown.

Parameters
user-name The name of the user for whom to set the extra information.
extra The extra information to be set for the user.

Example


  xquery version "1.0-ml"; 

  import module namespace sec = "http://marklogic.com/xdmp/security" 
      at "/MarkLogic/security.xqy";

  let $extra := <sec:password-extra>
                   <p>Change this password in 30 days</p>
                </sec:password-extra>

  return sec:user-set-password-extra("Jim", $extra)

  (: Sets the extra information for the user, Jim. :)
       
Powered by MarkLogic Server | Terms of Use | Privacy Policy