/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/AuditablePerson.java

http://github.com/SpringSource/spring-data-mongodb · Java · 70 lines · 37 code · 13 blank · 20 comment · 0 complexity · 24a89bfd5ecf3f367e25946b191c0d13 MD5 · raw file

  1. /*
  2. * Copyright 2013-2021 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * https://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.springframework.data.mongodb.core;
  17. import java.util.Date;
  18. import org.springframework.data.annotation.CreatedBy;
  19. import org.springframework.data.annotation.CreatedDate;
  20. import org.springframework.data.annotation.Id;
  21. import org.springframework.data.mongodb.core.mapping.DBRef;
  22. /**
  23. * Domain class for auditing functionality testing.
  24. *
  25. * @author Thomas Darimont
  26. */
  27. public class AuditablePerson {
  28. private @Id String id;
  29. private String firstname;
  30. private @DBRef @CreatedBy AuditablePerson createdBy;
  31. private @CreatedDate Date createdAt;
  32. public AuditablePerson() {}
  33. public AuditablePerson(String firstName) {
  34. this.firstname = firstName;
  35. }
  36. public String getId() {
  37. return id;
  38. }
  39. public void setId(String id) {
  40. this.id = id;
  41. }
  42. public String getFirstname() {
  43. return firstname;
  44. }
  45. public void setFirstname(String firstName) {
  46. this.firstname = firstName;
  47. }
  48. public AuditablePerson getCreatedBy() {
  49. return createdBy;
  50. }
  51. public void setCreatedBy(AuditablePerson createdBy) {
  52. this.createdBy = createdBy;
  53. }
  54. public Date getCreatedAt() {
  55. return createdAt;
  56. }
  57. }