$denyGroupAccess

Denies the specified access for the named group.
Syntax
    $denyGroupAccess{group_name}{access_value_1}{access_value_2} ... {access_value_n}
DocumentationFunction $denyGroupAccess denies the specified accesses for the named group.

    Parameters:
      group_name, the name of the group to deny the access for.
      access_value_1 through access_value_n, the values of the accesses to be denied for the named group.
      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 group 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 groups accesses do affect the users that are members.
Examples
Deny accesses for the group named 'quest_group':

    $denyGroupAccess{guests_group}{ACCESS_DATABASE_CREATE}{ACCESS_DATABASE_REMOVE}{ACCESS_DATABASE_READ}{ACCESS_DATABASE_UPDATE}
GroupSecurity
Minimum required transaction-mode:UPDATE=SECURITY
Required scripting permission of the developerPERMISSION_FL_ADMINISTRATIVE
Minimum parameters2
Maximum parameters <unlimited>