All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.nagyesta.lowkeyvault.service.key.ReadOnlyDeletedEntity Maven / Gradle / Ivy

There is a newer version: 2.5.81
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy