Subversion Repositories eFlore/Applications.del

Rev

Rev 1689 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1689 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 DepublicationObservationCallBack 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
 
13
}