Originally posted by Barry Brashear:
I am trying to write an interface that implements business rules. How are
the rules usually stored in a java application? They don't want to use a
database here.
I put them in a MySql database.
You could put them in Properties files. But as the rules get more complex, you often need to put in logic, variables, etc. so why not write the rules in Java? You can dymanically load the class files to vary the rules.