Closed rizjoj closed 6 years ago
In a pojo rule we inject a fact like so:
@Given("isPresent") private Boolean isPresent;
But, can one rule change this value so that following rules can see the changed value? It doesn't seem to work for me.
Solved it using:
@Given("isPresent") private NameValueReferable<Boolean> isPresent;
In a pojo rule we inject a fact like so:
But, can one rule change this value so that following rules can see the changed value? It doesn't seem to work for me.