Pull request #210: RED-3243: Added IMPORTED_REDACTIONS to storage FileType

Merge in RED/persistence-service from RED-3243-7 to master

* commit 'd200982d5a594718396c9a974eac00967566e7f5':
  RED-3243: Added IMPORTED_REDACTIONS to storage FileType
This commit is contained in:
Dominique Eiflaender 2022-01-31 12:21:02 +01:00 committed by Philipp Schramm
commit c7610b94ef

View File

@ -3,7 +3,7 @@ package com.iqser.red.service.persistence.service.v1.api.model.dossiertemplate.d
import lombok.Getter;
public enum FileType {
ORIGIN(".pdf"), REDACTION_LOG(".json"), SECTION_GRID(".json"), TEXT(".json"), NER_ENTITIES(".json"), IMAGE_INFO(".json");
ORIGIN(".pdf"), REDACTION_LOG(".json"), SECTION_GRID(".json"), TEXT(".json"), NER_ENTITIES(".json"), IMAGE_INFO(".json"), IMPORTED_REDACTIONS(".json");
@Getter
private final String extension;