Hi,
I am new to Camunda DMN engine.
Can I have a java object as DMN engine’s input?
Giving example that I have java class
public class Car {
String maker;
int yearMade;
String condition;
String color;
Person owner;
//getter
//setter
}
and my decision table might look like this:-
|Rules | input 1 | input 2 | output |
|Rule 1 | car.maker is xmw | car.condition is new | discount 10% |
|Rule 2 | car.condition is used | car.yearMade is 5 | Free new tyres |
I have read on this section
But I am not sure if it fit my purpose and I can’t find more example on this custom data type transformer.