defaultDescription

Provides a default implementation of the description attribute that all rule classes inherit from the root rule class. See Supported Data Types.

Each rule class should override the description attribute from the root rule class to provide a more meaningful description. If no override is provided (or inherited), a warning will be issued when the rule set is validated.

Important: The defaultDescription expression is for use only by the root rule class; you must not use it in your own rule classes.
<Class name="RootRuleClass" abstract="true">
    <Attribute name="description">
      <type>
        <javaclass name="curam.creole.value.Message"/>
      </type>
      <derivation>
        <!-- For use ONLY in the RootRuleClass -->
        <defaultDescription/>
      </derivation>
    </Attribute>
  </Class>