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