Loading TOC...

dls:document-remove-permissions

dls:document-remove-permissions(
   $uri as xs:string,
   $permissions as item()*
) as empty-sequence()

Summary

This function removes the specified permissions from the named document.

Parameters
uri The URI of the document.
permissions The permissions to be removed from the document. When run in an XQuery context, the permissions are a sequence of XML elements (sec:permission). When importing this module into a Server-Side JavaScript context, the permissions are an array of Objects.

Required Privileges

The dls-user role is required to run this function, or the privilege:
http://marklogic.com/xdmp/privileges/dls-user

Example

  xquery version "1.0-ml";

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

  dls:document-remove-permissions(
                   "/foo/bar/baz.xml", 
                   (xdmp:permission("Developer", "read"),
                    xdmp:permission("Developer", "update")))
  
  (: Removes the specified permissions from the list of permissions for 
     the 'baz.xml' document. :)
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.