Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
939 |
benjamin |
1 |
package org.tela_botanica.del.client.services.rest.async;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.del.client.utils.UtilitairesServiceResultat;
|
|
|
4 |
|
|
|
5 |
public abstract class AjoutCommentaireCallback extends PHPCallback<String>{
|
|
|
6 |
|
|
|
7 |
@Override
|
|
|
8 |
public String parserJSON(String retourService) {
|
|
|
9 |
return UtilitairesServiceResultat.convertirEtParserRetourAjoutCommentaire(retourService);
|
|
|
10 |
}
|
|
|
11 |
|
|
|
12 |
}
|