Leonardo Vannucci
2019-04-03 84d99d0f0700b2a19f504b21b1747275251305d8
dg1cloud-core/src/main/java/it/digione/dg1cloud/pojo/UploadedFileDescriptor.java
....@@ -8,6 +8,7 @@
88 private String sha256;
99 private Date dueDate; //Data nel formato ISO-8601 - es: 2018-07-27T18:25:43.511Z
1010 private String secretKey;
11
+ private String customKey;
1112
1213 public String getFileName() {
1314 return fileName;
....@@ -33,4 +34,10 @@
3334 public void setSecretKey(String secretKey) {
3435 this.secretKey = secretKey;
3536 }
37
+ public String getCustomKey() {
38
+ return customKey;
39
+ }
40
+ public void setCustomKey(String customKey) {
41
+ this.customKey = customKey;
42
+ }
3643 }