Revision c8f8690d src/gr/grnet/pithos/web/client/catalog/UpdateUserCatalogs.java

b/src/gr/grnet/pithos/web/client/catalog/UpdateUserCatalogs.java
7 7
import gr.grnet.pithos.web.client.Helpers;
8 8
import gr.grnet.pithos.web.client.Pithos;
9 9

  
10
import java.util.Iterator;
10 11
import java.util.List;
12
import java.util.Map;
11 13

  
12 14
/**
13 15
 * This is a wrapper around GetUserCatalogs that takes care of updating
......
30 32
    }
31 33

  
32 34
    public void onSuccess(UserCatalogs requestedUserCatalogs, UserCatalogs updatedUserCatalogs) {
35
        for(Map.Entry<String, String> uc : requestedUserCatalogs) {
36
            app.LOG("New displayName ", uc.getValue());
37
        }
33 38
    }
34 39

  
35 40
    public void onError(Request request, Throwable t) {
......
60 65
    public void scheduleDeferred() {
61 66
        Scheduler.get().scheduleDeferred(this);
62 67
    }
68

  
69
    public void scheduleEntry() {
70
        Scheduler.get().scheduleEntry(this);
71
    }
63 72
}

Also available in: Unified diff