Subversion Repositories eFlore/Applications.del

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2211 arthur 1
package org.tela_botanica.del.client.services.rest.async;
2
 
3
/**
4
 * Objet passé en paramètre d'un service d'ajout de vote sur une determination
5
 * @author LIENS
6
 *
7
 */
8
public abstract class AjoutVoteDeterminationCallback extends PHPCallback<Void> {
9
 
10
	@Override
11
	public Void parserJSON(String retourService) {
12
		return null;
13
	}
14
 
15
}