removeFilteredGroupingPolicy method

bool removeFilteredGroupingPolicy(
  1. int fieldIndex,
  2. List<String> fieldValues
)

removeFilteredGroupingPolicy removes a role inheritance rule from the current policy, field filters can be specified. fieldIndex the policy rule's start index to be matched. fieldValues the field values to be matched, value "" means not to match this field. return succeeds or not.

Implementation

bool removeFilteredGroupingPolicy(int fieldIndex, List<String> fieldValues) {
  return removeFilteredNamedGroupingPolicy('g', fieldIndex, fieldValues);
}