Rev 346 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.del.client.services.rest;
import org.tela_botanica.del.client.modeles.InformationsRecherche;
import org.tela_botanica.del.client.services.rest.async.ImagesParTaxonCallback;
public interface ImageService {
public void getImagesEfloreParTaxon(String nomTaxon, ImagesParTaxonCallback callback);
public void getImagesParTaxon(InformationsRecherche informationsRecherche, int debut, int fin, ImagesParTaxonCallback callback);
public void getImagesParObservation(String observationId, ImagesParTaxonCallback callback);
}