Statistics
| Branch: | Tag: | Revision:

root / gss / src / gr / ebs / gss / client / rest / RestCallback.java @ 895035a2

History | View | Annotate | Download (2.1 kB)

1
/*
2
 * Copyright 2009 Electronic Business Systems Ltd.
3
 *
4
 * This file is part of GSS.
5
 *
6
 * GSS is free software: you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 *
11
 * GSS is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with GSS.  If not, see <http://www.gnu.org/licenses/>.
18
 */
19
package gr.ebs.gss.client.rest;
20

    
21
import com.google.gwt.http.client.Request;
22
import com.google.gwt.http.client.RequestCallback;
23
import com.google.gwt.http.client.Response;
24

    
25

    
26
/**
27
 * @author kman
28
 *
29
 */
30
public abstract class RestCallback  implements RequestCallback {
31

    
32
        private static final int HTTP_OK = 200;
33
        private String path;
34
        private int okcode = -1;
35

    
36
        public RestCallback(String path) {
37
                this.path = path;
38
        }
39

    
40
        public RestCallback(String path, int okCode) {
41
                this.path = path;
42
                okcode = okCode;
43
        }
44

    
45
        public void onError(Request request, Throwable exception) {
46
                handleError(request, exception);
47
        }
48

    
49
        public void onResponseReceived(Request request, Response response) {
50
                try {
51
                        if (okcode == -1 && response.getStatusCode() == HTTP_OK)
52
                                handleSuccess(deserialize(response));
53
                        //this one is only used for trash handling where empty trash has 201 status code
54
                        else if(okcode !=-1 && (response.getStatusCode() == okcode || response.getStatusCode() == HTTP_OK))
55
                                handleSuccess(deserialize(response));
56
                        else if(response.getStatusCode() == 403)
57
                                RestCommand.sessionExpired();
58
                        else
59
                                handleError(request, new RestException(path, response.getStatusCode(), response.getStatusText(), response.getText()));
60
                } catch (Exception e) {
61
                        handleError(request,e);
62
                }
63
        }
64

    
65
        public abstract void handleSuccess(Object object);
66

    
67
        public abstract void handleError(Request request, Throwable exception);
68

    
69
        public abstract Object deserialize(Response response);
70

    
71
}