Pull request #357: processed date fix
Merge in RED/redaction-service from processed-date-fix-3.3.x to master * commit 'b4916b65b661c80f0924c163b8795205b9c8e6c3': processed date fix
This commit is contained in:
commit
1d389b78fd
@ -20,6 +20,7 @@ public class ManualChange {
|
|||||||
private AnnotationStatus annotationStatus;
|
private AnnotationStatus annotationStatus;
|
||||||
private ManualRedactionType manualRedactionType;
|
private ManualRedactionType manualRedactionType;
|
||||||
private OffsetDateTime processedDate;
|
private OffsetDateTime processedDate;
|
||||||
|
private OffsetDateTime requestedDate;
|
||||||
private String userId;
|
private String userId;
|
||||||
private Map<String, Object> propertyChanges = new HashMap<>();
|
private Map<String, Object> propertyChanges = new HashMap<>();
|
||||||
|
|
||||||
@ -31,6 +32,7 @@ public class ManualChange {
|
|||||||
ManualChange manualChange = new ManualChange();
|
ManualChange manualChange = new ManualChange();
|
||||||
manualChange.annotationStatus = baseAnnotation.getStatus();
|
manualChange.annotationStatus = baseAnnotation.getStatus();
|
||||||
manualChange.processedDate = baseAnnotation.getProcessedDate();
|
manualChange.processedDate = baseAnnotation.getProcessedDate();
|
||||||
|
manualChange.requestedDate = baseAnnotation.getRequestDate();
|
||||||
manualChange.userId = baseAnnotation.getUser();
|
manualChange.userId = baseAnnotation.getUser();
|
||||||
return manualChange;
|
return manualChange;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user