dg1cloud-core/src/main/java/it/digione/dg1cloud/pojo/UploadedFileDescriptor.java
.. .. @@ -8,6 +8,7 @@ 8 8 private String sha256; 9 9 private Date dueDate; //Data nel formato ISO-8601 - es: 2018-07-27T18:25:43.511Z 10 10 private String secretKey; 11 + private String customKey;11 12 12 13 public String getFileName() { 13 14 return fileName; .. .. @@ -33,4 +34,10 @@ 33 34 public void setSecretKey(String secretKey) { 34 35 this.secretKey = secretKey; 35 36 } 37 + public String getCustomKey() {38 + return customKey;39 + }40 + public void setCustomKey(String customKey) {41 + this.customKey = customKey;42 + }36 43 }