PlantillaComentario.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package es.uv.saic.domain;
  2. public class PlantillaComentario {
  3. private String uid;
  4. private String author;
  5. private String authorName;
  6. private String content;
  7. private String createdAt;
  8. private String modifiedAt;
  9. public PlantillaComentario() {}
  10. public PlantillaComentario(String uid, String author, String authorName, String content, String createdAt,
  11. String modifiedAt) {
  12. this.uid = uid;
  13. this.author = author;
  14. this.authorName = authorName;
  15. this.content = content;
  16. this.createdAt = createdAt;
  17. this.modifiedAt = modifiedAt;
  18. }
  19. public String getUid() {
  20. return uid;
  21. }
  22. public void setUid(String uid) {
  23. this.uid = uid;
  24. }
  25. public String getAuthor() {
  26. return author;
  27. }
  28. public void setAuthor(String author) {
  29. this.author = author;
  30. }
  31. public String getAuthorName() {
  32. return authorName;
  33. }
  34. public void setAuthorName(String authorName) {
  35. this.authorName = authorName;
  36. }
  37. public String getContent() {
  38. return content;
  39. }
  40. public void setContent(String content) {
  41. this.content = content;
  42. }
  43. public String getCreatedAt() {
  44. return createdAt;
  45. }
  46. public void setCreatedAt(String createdAt) {
  47. this.createdAt = createdAt;
  48. }
  49. public String getModifiedAt() {
  50. return modifiedAt;
  51. }
  52. public void setModifiedAt(String modifiedAt) {
  53. this.modifiedAt = modifiedAt;
  54. }
  55. }