We have the following problem in our web application. There is a workflow for creating an order on the application :
entering informations about the customer (one web form)
entering informations about the device (another web form)
and some constraints on each form in order to advance to the next step :
the customer has a series of attributes (first name, last name, street, telephone number) which need to be specified
when the customer wants to be notified by sms then a valid mobile phone number needs to be introduced
for the device (for a which a payment type (Card/Cash/Cheque) retrieved dy there is a certain amount of money to be accepted by the customer in order to create the order
Currently these constraints are implemented directly in the source code of the application, and this is making the application harder to maintain (some of the rules change from a version of the application to the next).
What would be a good approach to externalize these checks from the code when creating the order?
A rule-engine like Drools could be a good solution, but I'd like to give the possibility to the administrator of the site, via a visual editor to define the validation rules. Can anybody recommend me a solution which exists already for this situation?