Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
1986 |
aurelien |
1 |
package org.tela_botanica.del.client.services.rest.async;
|
|
|
2 |
|
|
|
3 |
import java.util.Map;
|
|
|
4 |
|
|
|
5 |
import org.tela_botanica.del.client.utils.UtilitairesServiceResultat;
|
|
|
6 |
|
|
|
7 |
import com.google.gwt.json.client.JSONParser;
|
|
|
8 |
|
|
|
9 |
public abstract class PaysCallback extends PHPCallback<Map<String, String>> {
|
|
|
10 |
|
|
|
11 |
@Override
|
|
|
12 |
public Map<String, String> parserJSON(String retourService) {
|
|
|
13 |
return UtilitairesServiceResultat.parserListePays(JSONParser.parseStrict(retourService));
|
|
|
14 |
}
|
|
|
15 |
}
|