com.github.nagyesta.lowkeyvault.service.key.ReadOnlyDeletedEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lowkey-vault-app Show documentation
Show all versions of lowkey-vault-app Show documentation
Assembled application of Lowkey Vault.
package com.github.nagyesta.lowkeyvault.service.key;
import com.github.nagyesta.lowkeyvault.service.EntityId;
import java.time.OffsetDateTime;
import java.util.Optional;
/**
* Base interface of deleted vault entities.
*
* @param The type of the versioned Id identifying this entity.
*/
public interface ReadOnlyDeletedEntity {
V getId();
Optional getDeletedDate();
Optional getScheduledPurgeDate();
}