Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 16e133cb authored by Alexandre Pocinho's avatar Alexandre Pocinho
Browse files

Refactoring code to support all mapping error to application.conf file

parent facfecc4
No related branches found
No related tags found
2 merge requests!69release 3.10.0,!68[HLVAL-481] Wrong validation constraints in [eHDSI HL7v3] - Identification...
......@@ -59,22 +59,15 @@ public class GVTtoGazelleValidationReportMapper {
*/
private void addValidationConstraint(Entry entry, ValidationResults vr) {
String entryClassification = entry.getClassification();
String entryCategory = entry.getCategory();
switch (entryClassification){
case ERROR:
addError(vr, entry);
break;
case ALERT:
if (CODE_NOT_FOUND.equals(entryCategory)){
addWarning(vr, entry);
} else {
addAssertion(vr, entry);
}
break;
case WARNING:
addWarning(vr,entry);
break;
case ALERT:
case AFFIRMATIVE:
case VALIDATION_NOTES:
case INFORMATIONAL:
......
......@@ -12,6 +12,23 @@ report {
}
cc-code-failure-notfound-codesys {
classification = ${report.classification.warning}
classification = ${report.classification.warning}
}
code-not-found-simple{
classification = ${report.classification.warning}
}
code-not-found-coded-element{
classification = ${report.classification.warning}
}
code-not-found-cs{
classification = ${report.classification.warning}
}
code-not-found-cs-empty{
classification = ${report.classification.warning}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment