|
|
@@ -23,9 +23,10 @@ public class ObjectInfo implements Serializable {
|
|
|
private long size;
|
|
|
private String url;
|
|
|
private int scope;
|
|
|
+ private String sha256sum;
|
|
|
private String updateTime;
|
|
|
|
|
|
- public ObjectInfo(String objectId, String objectName, int fileType, String filename, long size, int scope) {
|
|
|
+ public ObjectInfo(String objectId, String objectName, int fileType, String filename, long size, int scope, String sha256sum) {
|
|
|
this.objectId = objectId;
|
|
|
this.objectName = objectName;
|
|
|
this.fileType = fileType;
|
|
|
@@ -33,6 +34,7 @@ public class ObjectInfo implements Serializable {
|
|
|
this.size = size;
|
|
|
this.url = objectName;
|
|
|
this.scope = scope;
|
|
|
+ this.sha256sum = sha256sum;
|
|
|
}
|
|
|
|
|
|
public void setUrl(String url) {
|