Created
June 29, 2017 11:50
-
-
Save JeromeGuyon/27def4993d08631b2a486d4b35aeaab2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public abstract class AbstractVersionnedEntity { | |
| @Field("audit.v") | |
| protected Long version; | |
| @Field("audit.createdBy") | |
| protected String createdBy; | |
| @Field("audit.createdDate") | |
| protected LocalDateTime createdDate; | |
| public Long getVersion() { | |
| return version; | |
| } | |
| public void setVersion(Long version) { | |
| this.version = version; | |
| } | |
| public String getCreatedBy() { | |
| return createdBy; | |
| } | |
| public void setCreatedBy(String createdBy) { | |
| this.createdBy = createdBy; | |
| } | |
| public LocalDateTime getCreatedDate() { | |
| return createdDate; | |
| } | |
| public void setCreatedDate(LocalDateTime createdDate) { | |
| this.createdDate = createdDate; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment