$denyGroupPermissions

Denies the specified permission for the named group.
Syntax
    $denyGroupPermissions{group_name}{permission_value_1}{permission_value_2} ... {permission_value_n}
DocumentationFunction $denyGroupPermissions denies the specified permission for the named group.

    Parameters:
      group_name, the name of the group to deny the parmissions for.
      permision_value_1 through permission_value_n, the permissions to be denied for the named group.
      Valid permision values are:
        - PERMISSION_ADMINISTRATE_GROUPS
        - PERMISSION_ADMINISTRATE_USERS
        - PERMISSION_CREATE_GROUP
        - PERMISSION_CREATE_USER
        - PERMISSION_DELETE_GROUP
        - PERMISSION_DELETE_USER
        - PERMISSION_MODIFY_GROUP
        - PERMISSION_MODIFY_USER
        - PERMISSION_FL_BASIC
        - PERMISSION_FL_ADVANCED
        - PERMISSION_FL_ADMINISTRATIVE
        - PERMISSION_FL_ADMINISTRATOR
        - PERMISSION_FL_EXPERT
        - PERMISSION_TEMPLATE_CREATE
        - PERMISSION_TEMPLATE_DELETE
        - PERMISSION_ALL
    Throws:
      java.lang.IllegalArgumentException if the named group does not exist or permission_value is not one of the values listed above.
    Note:
      the permissions are denied for this group on the current branch and all children of this branch only.

      the permissions are denied for all users that are members of the named group.
Examples
Deny some permissions for the group named 'guest_group':

    $denyGroupPermissions{guests_group}{PERMISSION_ADMINISTRATE_GROUPS}{PERMISSION_ADMINISTRATE_USERS}
GroupSecurity
Minimum required transaction-mode:UPDATE=SECURITY
Required scripting permission of the developerPERMISSION_FL_ADMINISTRATIVE
Minimum parameters2
Maximum parameters <unlimited>