Skip to content

Commit 461d70e

Browse files
committed
Fix documentation.
Original Pull Request #1786 Closes #1785 (cherry picked from commit 8b7f0f8)
1 parent 352e742 commit 461d70e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: src/main/asciidoc/reference/elasticsearch-auditing.adoc

+4
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,15 @@ public class Person implements Persistable<Long> {
3030
@Id private Long id;
3131
private String lastName;
3232
private String firstName;
33+
@CreatedDate
3334
@Field(type = FieldType.Date, format = DateFormat.basic_date_time)
3435
private Instant createdDate;
36+
@CreatedBy
3537
private String createdBy
3638
@Field(type = FieldType.Date, format = DateFormat.basic_date_time)
39+
@LastModifiedDate
3740
private Instant lastModifiedDate;
41+
@LastModifiedBy
3842
private String lastModifiedBy;
3943
4044
public Long getId() { // <.>

0 commit comments

Comments
 (0)