Guys:
Just a general question about the denotation for less than operator.
The schema is such the one can not use the '<' char for reflecting the
operation.
One must use the escape character < so the rule is correctly formed document.
Are there in plans to change this for better readability?
Russ
<rule name="Stock Price Low Enough">
<!-- parameters to pass to business rule -->
<parameter identifier="stockOffer">
<class>StockOffer</class>
</parameter>
<!-- Conditions or 'left hand side' (LHS) that must be met
for business rule to fire-->
<java:condition>stockOffer.getRecommendPurchase() == null </java:condition>
<java:condition>stockOffer.getStockPrice() < 100 </java:condition>
<java:consequence>
stockOffer.setRecommendPurchase(StockOffer.YES);
printStock(stockOffer);
</java:consequence>
</rule>