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