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

ca.gc.aafc.dina.entity.SoftDeletable Maven / Gradle / Ivy

There is a newer version: 0.132
Show newest version
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