Skip to content

Commit

Permalink
Merge pull request #8 from aboutbits/change-aware
Browse files Browse the repository at this point in the history
add ChangeAware interface
  • Loading branch information
SirCotare authored Sep 11, 2024
2 parents 3168920 + 94faac5 commit a5e6a9e
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package it.aboutbits.springboot.toolbox.persistence;

import java.time.OffsetDateTime;

public interface ChangeAware {
OffsetDateTime getCreatedAt();

OffsetDateTime getUpdatedAt();

void setCreatedAt(OffsetDateTime createdAt);

void setUpdatedAt(OffsetDateTime updatedAt);
}

0 comments on commit a5e6a9e

Please sign in to comment.