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 Status status;
private String section;
private boolean rectangle;
private boolean addToDictionary;
private boolean addToDossierDictionary;

View File

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

View File

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