Revision cde22209 src/gr/grnet/pithos/web/client/foldertree/File.java

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

  
67 67
    private String path;
68 68

  
69
    private String owner;
69
    private String ownerID;
70 70

  
71 71
    private String container;
72 72

  
......
111 111
        return "/" + container + "/" + path;
112 112
    }
113 113

  
114
    public String getOwner() {
115
        return owner;
114
    public String getOwnerID() {
115
        return ownerID;
116 116
    }
117 117

  
118 118
    public String getPath() {
......
149 149
        	name = path.substring(parent.getPrefix().length() + 1);
150 150
        else
151 151
            name = path;
152
        this.owner = _owner;
152
        this.ownerID = _owner;
153 153
        hash = unmarshallString(o, "hash");
154 154
        bytes = unmarshallLong(o, "bytes");
155 155
        version = unmarshallInt(o, "x_object_version");
......
223 223
    }
224 224

  
225 225
    private void populate(String _owner, Response response) {
226
        this.owner = _owner;
226
        this.ownerID = _owner;
227 227
        published = false;
228 228
        publicUri = null;
229 229
        permissions.clear();

Also available in: Unified diff