
com.github.nagyesta.lowkeyvault.service.key.ReadOnlyDeletedEntity Maven / Gradle / Ivy
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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy