picl
picl

Reputation: 11

what is the difference between business object, business engine and business entity and business rules

I was reading an article that refers to the following but did not have any description about what these are actually. Can anyone help me understand these w.r.t software architecture/design? Thank you.

Upvotes: 1

Views: 130

Answers (1)

Neil McGuigan
Neil McGuigan

Reputation: 48256

Business Object and Business Entity are probably the same. They are computer models of things that are important to a business, such as a Sales Order.

A Business Rule is something like this: if orderQuantity > 10 and customerCountry = USA then discount = 0.10

Business Engine probably means computer code to validate a business object or to evaluate a business rule, an example being JBOSS Drools.

Upvotes: 0

Related Questions