DM-285: fully deprecated RedactionLog, added component rule file
* add ComponentLogCategory
This commit is contained in:
parent
4b2e0e2142
commit
906bf10af3
@ -16,8 +16,7 @@ import lombok.experimental.FieldDefaults;
|
|||||||
public class ComponentLog {
|
public class ComponentLog {
|
||||||
|
|
||||||
int analysisNumber;
|
int analysisNumber;
|
||||||
|
List<ComponentLogCategory> componentLogCategories = new ArrayList<>();
|
||||||
List<ComponentLogEntry> componentLogEntries = new ArrayList<>();
|
|
||||||
|
|
||||||
long dictionaryVersion = -1;
|
long dictionaryVersion = -1;
|
||||||
long dossierDictionaryVersion = -1;
|
long dossierDictionaryVersion = -1;
|
||||||
|
|||||||
@ -0,0 +1,20 @@
|
|||||||
|
package com.iqser.red.service.persistence.service.v1.api.shared.model.analysislog.componentlog;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import lombok.AccessLevel;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import lombok.experimental.FieldDefaults;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
@FieldDefaults(level = AccessLevel.PRIVATE)
|
||||||
|
public class ComponentLogCategory {
|
||||||
|
|
||||||
|
String category;
|
||||||
|
List<ComponentLogEntry> componentLogEntries;
|
||||||
|
|
||||||
|
}
|
||||||
@ -17,8 +17,9 @@ import lombok.experimental.FieldDefaults;
|
|||||||
public class ComponentLogEntry {
|
public class ComponentLogEntry {
|
||||||
|
|
||||||
String value;
|
String value;
|
||||||
String originalValue;
|
List<String> originalValue;
|
||||||
String transformation;
|
String transformation;
|
||||||
|
String matchedRule;
|
||||||
|
|
||||||
List<ComponentEntityReference> componentEntityReferences;
|
List<ComponentEntityReference> componentEntityReferences;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user