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

com.github.nagyesta.lowkeyvault.model.common.DeletedModel Maven / Gradle / Ivy

package com.github.nagyesta.lowkeyvault.model.common;

public interface DeletedModel {
    String getRecoveryId();

    java.time.OffsetDateTime getDeletedDate();

    java.time.OffsetDateTime getScheduledPurgeDate();

    void setRecoveryId(String recoveryId);

    void setDeletedDate(java.time.OffsetDateTime deletedDate);

    void setScheduledPurgeDate(java.time.OffsetDateTime scheduledPurgeDate);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy