ca.gc.aafc.dina.entity.SoftDeletable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dina-base-api Show documentation
Show all versions of dina-base-api Show documentation
Base DINA API package for Java built on SpringBoot and Crnk
package ca.gc.aafc.dina.entity;
import java.time.OffsetDateTime;
/**
* Interface representing an entity with soft-delete support.
*
*/
public interface SoftDeletable {
/**
* Standard name of the field.
*/
String DELETED_DATE_FIELD_NAME = "deletedDate";
OffsetDateTime getDeletedDate();
void setDeletedDate(OffsetDateTime deletedDate);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy