redaction-service-v1/redaction-service-api-v1/src/main/java/com/iqser/red/service/redaction/v1/model/ManualRedactions.java online editiert mit Bitbucket

This commit is contained in:
Dominique Eiflaender 2020-08-13 16:07:05 +02:00
parent 2b93ae57d5
commit 9b61971132

View File

@ -12,6 +12,6 @@ import lombok.NoArgsConstructor;
@NoArgsConstructor
public class ManualRedactions {
Set<String> idsToRemove = new HashSet<>();
private Set<String> idsToRemove = new HashSet<>();
Set<ManualRedactionEntry> entriesToAdd = new HashSet<>();
}