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

https://bitbucket.org/jochristo/dumpster-springboot-2.0 · Java · 177 lines · 139 code · 32 blank · 6 comment · 6 complexity · 3d414bd7600430002104fa384e9d3a27 MD5 · raw file

  1. package joch.armada.api.domain;
  2. import com.fasterxml.jackson.annotation.JsonInclude;
  3. import com.fasterxml.jackson.annotation.JsonPropertyOrder;
  4. import com.fasterxml.jackson.databind.annotation.JsonSerialize;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. import java.util.Set;
  8. import javax.validation.ConstraintViolation;
  9. import javax.validation.Validation;
  10. import javax.validation.Validator;
  11. import javax.validation.ValidatorFactory;
  12. import javax.validation.constraints.Min;
  13. import joch.armada.api.Constants.EntityTypeName;
  14. import joch.armada.api.exception.ParameterConstraintViolationException;
  15. import org.joko.core.jsonapi.annotations.JAPIAttribute;
  16. import org.joko.core.jsonapi.annotations.JAPIIdentifier;
  17. import org.joko.core.jsonapi.annotations.JAPIType;
  18. import org.joko.core.jsonapi.serializers.JsonDateFormatSerializer;
  19. import org.mongodb.morphia.annotations.Entity;
  20. import org.springframework.data.annotation.Id;
  21. import org.springframework.data.mongodb.core.mapping.Document;
  22. import org.springframework.data.mongodb.core.mapping.Field;
  23. /**
  24. *
  25. * @author ic
  26. */
  27. @Document(collection = EntityTypeName.DUMPSTERS)
  28. @JAPIType(type = EntityTypeName.DUMPSTERS)
  29. @JsonInclude(JsonInclude.Include.NON_NULL)
  30. @Entity(value = EntityTypeName.DUMPSTERS)
  31. @JsonPropertyOrder({"available","allocated","reserved","total","createdAt","updatedAt"})
  32. public class Dumpster implements Serializable
  33. {
  34. @Id
  35. @JAPIIdentifier
  36. private String id;
  37. @Field
  38. @JAPIAttribute
  39. @Min(value = 1, message = "The value of field 'total' must be greater than zero")
  40. private int total;
  41. @Field
  42. @JAPIAttribute
  43. @Min(value = 0, message = "The value of field 'available' must be positive")
  44. private int available;
  45. @Field
  46. @JAPIAttribute
  47. @Min(value = 0, message = "The value of field 'reserved' must be positive")
  48. private int reserved;
  49. @Field
  50. @JAPIAttribute
  51. @Min(value = 0, message = "The value of field 'allocated' must be positive")
  52. private int allocated;
  53. @Field
  54. @JsonSerialize(using = JsonDateFormatSerializer.class)
  55. @JAPIAttribute
  56. private Date createdAt = new Date();
  57. @Field
  58. @JsonSerialize(using = JsonDateFormatSerializer.class)
  59. @JAPIAttribute
  60. private Date updatedAt;
  61. @Field
  62. @JAPIAttribute
  63. private boolean deleted = false;
  64. public Dumpster newInstance()
  65. {
  66. this.available = this.getTotal() - this.getAllocated() - this.getReserved();
  67. validate();
  68. return this;
  69. }
  70. public Dumpster updateInstance(Dumpster updated)
  71. {
  72. // != 0 : client provided input...
  73. if(updated.getTotal() != 0){
  74. this.total = updated.getTotal();
  75. }
  76. if(updated.getAllocated() != 0){
  77. this.allocated = updated.getAllocated();
  78. }
  79. if(updated.getReserved()!= 0){
  80. this.reserved = updated.getReserved();
  81. }
  82. this.available = this.getTotal() - this.getAllocated() - this.getReserved();
  83. this.setUpdatedAt(new Date());
  84. validate();
  85. return this;
  86. }
  87. public Date getCreatedAt() {
  88. return createdAt;
  89. }
  90. public void setCreatedAt(Date createdAt) {
  91. this.createdAt = createdAt;
  92. }
  93. public Date getUpdatedAt() {
  94. return updatedAt;
  95. }
  96. public void setUpdatedAt(Date updatedAt) {
  97. this.updatedAt = updatedAt;
  98. }
  99. protected void validate()
  100. {
  101. // bean validation
  102. ValidatorFactory vf = Validation.buildDefaultValidatorFactory();
  103. Validator validator = vf.getValidator();
  104. Set<ConstraintViolation<Dumpster>> violations = validator.validate(this);
  105. if (!violations.isEmpty()) {
  106. throw new ParameterConstraintViolationException(violations);
  107. }
  108. }
  109. public int getAvailable() {
  110. return available;
  111. }
  112. public void setAvailable(int available) {
  113. this.available = available;
  114. }
  115. public int getReserved() {
  116. return reserved;
  117. }
  118. public void setReserved(int reserved) {
  119. this.reserved = reserved;
  120. }
  121. public int getAllocated() {
  122. return allocated;
  123. }
  124. public void setAllocated(int allocated) {
  125. this.allocated = allocated;
  126. }
  127. public int getTotal() {
  128. return total;
  129. }
  130. public void setTotal(int total) {
  131. this.total = total;
  132. }
  133. public String getId() {
  134. return id;
  135. }
  136. public void setId(String id) {
  137. this.id = id;
  138. }
  139. public boolean isDeleted() {
  140. return deleted;
  141. }
  142. public void setDeleted(boolean deleted) {
  143. this.deleted = deleted;
  144. }
  145. }