$denyUserAccess

Denies the specified access for the named user.
Syntax
    $denyUserAccess{username}{access_value_1}{access_value_2} ... {access_value_n}
DocumentationFunction $denyUserAccess denies the specified accesses for the named user.

    Parameters:
      username, the name of the user to deny the access for.
      access_value_1 through access_value_n, the values of the accesses to be denied for the named user.
      Valid access values are:
        - ACCESS_CREATE
        - ACCESS_DELETE
        - ACCESS_READ
        - ACCESS_UPDATE
        - ACCESS_VISIBLE
        - ACCESS_DATABASE_CREATE
        - ACCESS_DATABASE_REMOVE
        - ACCESS_DATABASE_READ
        - ACCESS_DATABASE_UPDATE
        - ACCESS_ALL
    Throws:
      java.lang.IllegalArgumentException if the named user does not exist or if any access value is not one of the list above.
    Note:
      the accesses are denied for the current branch and its children only.

      the changes of the user accesses don't affect the groups the user is member of.
Examples
Deny some accesses for the user named 'Jack':

    $denyUserAccess {Jack1}{ACCESS_DELETE}{ACCESS_CREATE}
GroupSecurity
Minimum required transaction-mode:UPDATE=SECURITY
Required scripting permission of the developerPERMISSION_FL_ADMINISTRATIVE
Minimum parameters2
Maximum parameters <unlimited>