From 7d33b0d97e5e1da90b7e3de316ca3f7f1020f559 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominique=20Eifl=C3=A4nder?= Date: Thu, 17 Jun 2021 12:59:48 +0200 Subject: [PATCH] RED-1212: Ignore excluded redactionlog entries --- .../redaction-report-service-server-v1/pom.xml | 2 +- .../v1/server/service/RedactionLogConverterService.java | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml b/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml index b78f791..5edadc2 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml +++ b/redaction-report-service-v1/redaction-report-service-server-v1/pom.xml @@ -24,7 +24,7 @@ com.iqser.red.service redaction-service-api-v1 - 2.15.0 + 2.23.0 com.iqser.red.service diff --git a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/RedactionLogConverterService.java b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/RedactionLogConverterService.java index 06d3350..1333b4c 100644 --- a/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/RedactionLogConverterService.java +++ b/redaction-report-service-v1/redaction-report-service-server-v1/src/main/java/com/iqser/red/service/redaction/report/v1/server/service/RedactionLogConverterService.java @@ -23,6 +23,10 @@ public class RedactionLogConverterService { if (entry.isRedacted()) { + if(entry.isExcluded()){ + return; + } + if (entry.isRecommendation()) { return; }