Pull request #36: Added filename to redactionLog
Merge in RED/redaction-service from filename to master * commit 'c27c9b2f5902d66f654982d7e5f005ecc176e01b': Added missing constuctor for RedactionLog Added filename to redactionLog
This commit is contained in:
commit
ff0a73c635
@ -11,10 +11,19 @@ import lombok.NoArgsConstructor;
|
||||
@NoArgsConstructor
|
||||
public class RedactionLog {
|
||||
|
||||
public RedactionLog(List<RedactionLogEntry> redactionLogEntry, long dictionaryVersion, long rulesVersion) {
|
||||
|
||||
this.redactionLogEntry = redactionLogEntry;
|
||||
this.dictionaryVersion = dictionaryVersion;
|
||||
this.rulesVersion = rulesVersion;
|
||||
}
|
||||
|
||||
private List<RedactionLogEntry> redactionLogEntry;
|
||||
|
||||
private long dictionaryVersion = -1;
|
||||
|
||||
private long rulesVersion = -1;
|
||||
|
||||
private String filename;
|
||||
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user