Skip to content
Snippets Groups Projects

feat: [DLCM-2843] when deposit is completed remove anonymized deposit and...

Merged Mathieu.Vonlanthen requested to merge MVO-clean-anonymized-deposit into master
All threads resolved!
Files
8
@@ -47,15 +47,18 @@ public class AnonymizedDeposit extends ResourceNormalized {
private Deposit deposit;
@Schema(description = "The timestamp when the zip file of the anonymized deposit has been created")
@NotNull
private OffsetDateTime timestamp;
@Schema(description = "The checksum of the checksums of all data files")
@NotNull
private String aggregateChecksum;
@Schema(description = "The id of the page listing all anonymized deposits of a given deposit")
@NotNull
private String pageId;
public @NotNull Deposit getDeposit() {
public Deposit getDeposit() {
return deposit;
}
@@ -71,7 +74,7 @@ public class AnonymizedDeposit extends ResourceNormalized {
return pageId;
}
public void setDeposit(@NotNull Deposit deposit) {
public void setDeposit(Deposit deposit) {
this.deposit = deposit;
}
Loading