Revision d79765da

b/src/gr/grnet/pithos/web/client/foldertree/File.java
63 63

  
64 64
    private String modifiedBy;
65 65

  
66
    private Date versionTimestamp;
67

  
68 66
    private String path;
69 67

  
70 68
    private String owner;
......
108 106
        return version;
109 107
    }
110 108

  
111
    public Date getVersionTimestamp() {
112
        return versionTimestamp;
113
    }
114

  
115 109
    public String getUri() {
116 110
        return "/" + container + "/" + path;
117 111
    }
......
161 155
        contentType = unmarshallString(o, "content_type");
162 156
        lastModified = unmarshallDate(o, "last_modified");
163 157
        modifiedBy = unmarshallString(o, "x_object_modified_by");
164
        versionTimestamp = unmarshallDate(o, "x_object_version_timestamp");
165 158
        published = o.containsKey("x_object_public") ? true : false;
166 159
        publicUri = unmarshallString(o, "x_object_public");
167 160
        this.container = _container;

Also available in: Unified diff