Summary

In dialogs different types of validations are used. There are validations which define when a value is valid at all, and there are validations which are rules defined by the business. For example an date of birth is only a valid date of birth if it is not in the future. The business however wants only to allow applicants of 18 years or older, so the date of birth should be 18 years or more in the past.

Speaking in terms of the clean architecture, the validation rules that indicate whether a value is valid at all are located in the interface layer. The validation rules which are determined by the business are part of the domain layer. This article discusses the second kind of validation, and how not to mix the interface layer with the domain layer.

Contents


Problem

Business rules and validations deserve special attention in Blueriq. Please see Business Rules and the Clean Architecture for more information.

In this small example, we discuss the case that the business imposes that an applicant should be 18 years of age. For this scenario it is important that the rule engine triggers automatically and no flow is needed and that Blueriq can provide support with features such as dependencies and the decision requirements graph.

Solutions

No decoupling

Module with Flow

Unable to render {include} The included page could not be found.

Issues and considerations

We advise to use the Decoupling Pattern 1: Module with Flow for this example. It fullfils all requirements, and gives additional support in the form of unit tests in your model. There is also a neat separation of business validations and general validations. Applying no decoupling can still be a valid option if the overall application is small, but this choice should be revisited when the application grows.

Decouple category

Properties

PropertyDescription
Decouple categoryCustomer Facing Applications (4)
ComplexityLow
Related patterns/solution
  • No labels