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