Blacklisting an entity method in the rule condition builder

To blacklist an entity method is to make that method unavailable for use in the Rule Condition builder in the business rules editor. In the default implementation class of the IBizRulesPlugin plugin, Guidewire does not blacklist any entity methods.

The following code sample illustrates how to blacklist an entity method.

override property get BlackListedMethods(): Set<IMethodReference> {
  return {
      PolicyPeriod#activateDraftFacAgreements(),
      UWIssueType#calculateDefaultValue(String)
  }
}