is rectangle

This commit is contained in:
Timo Bejan 2021-11-28 22:11:14 +02:00
parent dc02e58283
commit 8250714e32
3 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,7 @@ public class ManualRedactionEntry {
private List<Rectangle> positions = new ArrayList<>(); private List<Rectangle> positions = new ArrayList<>();
private Status status; private Status status;
private String section; private String section;
private boolean rectangle;
private boolean addToDictionary; private boolean addToDictionary;
private boolean addToDossierDictionary; private boolean addToDossierDictionary;

View File

@ -22,6 +22,7 @@ public class RedactionLogEntry {
private String type; private String type;
private String value; private String value;
private String reason; private String reason;
private boolean rectangle;
private int matchedRule; private int matchedRule;
private String legalBasis; private String legalBasis;
private boolean redacted; private boolean redacted;

View File

@ -262,6 +262,7 @@ public class RedactionLogMergeService {
.value(manualRedactionEntry.getValue()) .value(manualRedactionEntry.getValue())
.section(manualRedactionEntry.getSection()) .section(manualRedactionEntry.getSection())
.type(manualRedactionEntry.getType()) .type(manualRedactionEntry.getType())
.rectangle(manualRedactionEntry.isRectangle())
.redacted(true) .redacted(true)
.isHint(false) .isHint(false)
.sectionNumber(-1) .sectionNumber(-1)