We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 352e742 commit 461d70eCopy full SHA for 461d70e
src/main/asciidoc/reference/elasticsearch-auditing.adoc
@@ -30,11 +30,15 @@ public class Person implements Persistable<Long> {
30
@Id private Long id;
31
private String lastName;
32
private String firstName;
33
+ @CreatedDate
34
@Field(type = FieldType.Date, format = DateFormat.basic_date_time)
35
private Instant createdDate;
36
+ @CreatedBy
37
private String createdBy
38
39
+ @LastModifiedDate
40
private Instant lastModifiedDate;
41
+ @LastModifiedBy
42
private String lastModifiedBy;
43
44
public Long getId() { // <.>
0 commit comments