Statistics
| Branch: | Tag: | Revision:

root / web_client / src / gr / grnet / pithos / web / client / foldertree / AccountResource.java @ 9e8e14e4

History | View | Annotate | Download (906 Bytes)

1
/*
2
 * Copyright (c) 2011 Greek Research and Technology Network
3
 */
4

    
5
package gr.grnet.pithos.web.client.foldertree;
6

    
7
import com.google.gwt.http.client.Header;
8
import com.google.gwt.json.client.JSONArray;
9
import com.google.gwt.json.client.JSONObject;
10
import com.google.gwt.json.client.JSONParser;
11
import com.google.gwt.json.client.JSONValue;
12
import gr.grnet.pithos.web.client.rest.resource.RestResource;
13
import java.util.ArrayList;
14
import java.util.List;
15

    
16
/**
17
 * Created by IntelliJ IDEA. User: chstath Date: 5/19/11 Time: 2:55 PM To change this template use File | Settings |
18
 * File Templates.
19
 */
20
public class AccountResource extends Resource {
21

    
22
    private List<ContainerResource> containers = new ArrayList<ContainerResource>();
23

    
24
    @Override
25
    public String getLastModifiedSince() {
26
        return null;
27
    }
28

    
29
    public List<ContainerResource> getContainers() {
30
        return containers;
31
    }
32
}