/src/main/java/joch/armada/api/domain/Address.java

https://bitbucket.org/jochristo/dumpster-springboot-2.0 · Java · 139 lines · 102 code · 33 blank · 4 comment · 0 complexity · f4a6fc90c7c660385e7a588b174a4c41 MD5 · raw file

  1. package joch.armada.api.domain;
  2. import com.fasterxml.jackson.annotation.JsonInclude;
  3. import org.joko.core.jsonapi.annotations.JAPIAttribute;
  4. import org.joko.core.jsonapi.annotations.JAPIType;
  5. import org.springframework.data.mongodb.core.mapping.Document;
  6. import org.springframework.data.mongodb.core.mapping.Field;
  7. /**
  8. *
  9. * @author ic
  10. */
  11. @Document
  12. @JAPIType(type = "Address")
  13. @JsonInclude(JsonInclude.Include.NON_NULL)
  14. public class Address
  15. {
  16. @Field
  17. @JAPIAttribute
  18. private String addressLine1;
  19. @Field
  20. @JAPIAttribute
  21. private String addressLine2;
  22. @Field
  23. @JAPIAttribute
  24. private String addressLine3;
  25. @Field
  26. @JAPIAttribute
  27. private String contactName;
  28. @Field
  29. @JAPIAttribute
  30. private String countryCode;
  31. @Field
  32. @JAPIAttribute
  33. private String locality;
  34. @Field
  35. @JAPIAttribute
  36. private String Organization;
  37. @Field
  38. @JAPIAttribute
  39. private String postalCode;
  40. @Field
  41. @JAPIAttribute
  42. private String region;
  43. @Field
  44. @JAPIAttribute
  45. private String tag;
  46. public String getAddressLine1() {
  47. return addressLine1;
  48. }
  49. public void setAddressLine1(String addressLine1) {
  50. this.addressLine1 = addressLine1;
  51. }
  52. public String getAddressLine2() {
  53. return addressLine2;
  54. }
  55. public void setAddressLine2(String addressLine2) {
  56. this.addressLine2 = addressLine2;
  57. }
  58. public String getAddressLine3() {
  59. return addressLine3;
  60. }
  61. public void setAddressLine3(String addressLine3) {
  62. this.addressLine3 = addressLine3;
  63. }
  64. public String getContactName() {
  65. return contactName;
  66. }
  67. public void setContactName(String contactName) {
  68. this.contactName = contactName;
  69. }
  70. public String getCountryCode() {
  71. return countryCode;
  72. }
  73. public void setCountryCode(String countryCode) {
  74. this.countryCode = countryCode;
  75. }
  76. public String getLocality() {
  77. return locality;
  78. }
  79. public void setLocality(String locality) {
  80. this.locality = locality;
  81. }
  82. public String getOrganization() {
  83. return Organization;
  84. }
  85. public void setOrganization(String Organization) {
  86. this.Organization = Organization;
  87. }
  88. public String getPostalCode() {
  89. return postalCode;
  90. }
  91. public void setPostalCode(String postalCode) {
  92. this.postalCode = postalCode;
  93. }
  94. public String getRegion() {
  95. return region;
  96. }
  97. public void setRegion(String region) {
  98. this.region = region;
  99. }
  100. public String getTag() {
  101. return tag;
  102. }
  103. public void setTag(String tag) {
  104. this.tag = tag;
  105. }
  106. }