Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Table of Contents
maxLevel2


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

Expand
titleExpand to see the Module with flow pattern characteristics

Include Page
Decoupling Pattern 1: Module with Flow Score [Internal]
Decoupling Pattern 1: Module with Flow Score [Internal]

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

Image Added

Properties

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

Kenmerken

Kenmerk

Beschrijving

Ontkoppel categorie

Front-end (4)

Complexiteit

Laag

Related patterns/solutions

 

 

Table of Contents
maxLevel2

Samenvatting

In dialogs many input validations rules are used. These input validations will be defined within the domain layer but also used within dialogs (interface layer). This will cause coupling between dialogs and business rules which will leads to many undesirable effects.

Image Removed

Context

sdsdfsfd

 

 EigenschapOmschrijvingKennis ontsluitingInput validation Run-time validatie   Implementatie kenmerken   Onderhoudbaarheid  Out of the box 

Probleem

Content of a value list changes more often compared to the application which uses the value list. Seperating application behaviour from maintenance of value list content which could be depend on external resources.

Oplossingen

Voor de oplossing wordt rekening gehouden met de kenmerken die benoemd zijn in de tabel onder "Context".

 

Er zijn verschillende oplossingen mogelijk waarbij de bovenstaande kenmerken in meer- of mindere mate gerealiseerd kunnen worden. Per geval dient de best passende oplossing te worden gekozen. In de tabel hieronder worden de belangrijkste eigenschappen getoond en hoe elke oplossing daarop scoort.

 

 Eigenschap    Kennis ontsluiting               Implementatie kenmerken                         

Solution 1

 

Solution 2

 

Issues and considerations

 

Related patterns