Blacklisting an entity property in the rule condition builder
To blacklist an entity property is to make that property 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 properties.
The following code sample illustrates how to blacklist an entity property.
override property get BlackListedProperties(): Set<IPropertyReference> {
return {
PolicyPeriod#Active,
PersonalAutoLine#AllClauses,
PersonalAutoLine#AllExclusions
}
}
