Rev 1689 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.del.client.services.rest.async;
import com.google.gwt.json.client.JSONParser;
public abstract class DepublicationObservationCallBack extends PHPCallback<String> {
@Override
public String parserJSON(String retourService) {
String reponse = JSONParser.parseStrict(retourService).isString().stringValue();
return reponse;
}
}