This repository can be cloned in Red Hat Decision Manager v7.0.
It's related to Red Hat Decision Manager Loan Demo
To test the rule execution on the kieserver:
- Open Swagger :
http://localhost:8080/kie-server/docs
- Select Rule Evaluation :: BRM
- Insert for container id:
loan-simple_1.0.0
- And use the following payload for body:
{
"lookup": "default-stateless-ksession",
"commands": [
{
"insert": {
"object": {
"com.redhat.demos.dm.loan.model.Applicant": {
"creditScore": 120,
"name": "Jim Whitehurst"
}
},
"out-identifier": "applicant"
}
},
{
"insert": {
"object": {
"com.redhat.demos.dm.loan.model.Loan": {
"amount": 2500,
"approved": false,
"duration": 24,
"interestRate": 1.5
}
},
"out-identifier": "loan"
}
},
{
"fire-all-rules": {}
},
{
"get-objects": {
"out-identifier": "objects"
}
},
{
"dispose": {}
}
]
}