We are going to be implementing a rules engine using Drools for a customer, and one of the requirements is to be able to say that a rule is associated with a particular legal requirement.
For instance, the law says that a driving licence can only be issued to someone 18 or over, so we have:
rule "Driving Licence: Age >= 18"
when
$applicant: Applicant(age < 18)
$application: Application()
then
$application.setValid(false);
end
or for the calculation of a tax total
rule "Tax: Top bracket"
when
$return: Return(income > 44000)
then
$application.setTopBracket(true);
end
or similar.
One solution would be to have the legal requirement in the name:
rule "Driving Licence: Age >= 18: Section 103 RTA 1988"
The question: what would be the best way of achieving this? Is the name the only way? Is there a way to add a custom attribute to a rule? If so, can it be mandatory? I could also use comments, but I would prefer to avoid that.
It would be nice if in the rule trace we could see the trace of these attributes as well, but that isn't vital.
Please note that I don't want to change the rule logic, I just want to be able to say 'This rule comes from this law'. The decision of the rule is not important. I do not wish to change the setValid setter.