sec.removePath

sec.removePath(
   path as String,
   path-namespaces as element(sec.pathNamespace)[]
) as null

Summary

This function removes protection from the specified protected path and removes the path from the Security database.

Parameters
path The name of the path to remove.
path-namespaces The namespace(s) for the path to be removed.

Required Privileges

http://marklogic.com/xdmp/privileges/remove-path

Usage Notes

This function must be executed against the Security database.

Example


 (: 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:remove-path("/root/bar[@baz=1]", ()),
sec:remove-path("test", ()),
sec:remove-path("/root/reg[fn:matches(@expr, 'is')]", ())
    
Powered by MarkLogic Server | Terms of Use | Privacy Policy