securis/src/main/java/net/curisit/securis/db/PackMetadata.java
.. .. @@ -44,6 +44,7 @@ 44 44 45 45 private boolean readonly; 46 46 47 + private boolean mandatory;47 48 48 49 @JsonProperty("pack_id") 49 50 public Integer getPackId() { .. .. @@ -106,4 +107,12 @@ 106 107 return key.hashCode() + (pack == null ? 0 : pack.hashCode()); 107 108 } 108 109 110 + public boolean isMandatory() {111 + return mandatory;112 + }113 +114 + public void setMandatory(boolean mandatory) {115 + this.mandatory = mandatory;116 + }117 +109 118 }