2211 |
arthur |
1 |
package org.tela_botanica.del.client.services.rest;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.del.client.modeles.Image;
|
|
|
4 |
import org.tela_botanica.del.client.modeles.InformationsRecherche;
|
|
|
5 |
import org.tela_botanica.del.client.services.rest.async.ImagesParTaxonCallback;
|
|
|
6 |
import org.tela_botanica.del.client.services.rest.async.SuppressionImageCallback;
|
|
|
7 |
|
|
|
8 |
public interface ImageService {
|
|
|
9 |
|
|
|
10 |
public void getImagesEfloreParTaxon(String nomTaxon, ImagesParTaxonCallback callback);
|
|
|
11 |
|
|
|
12 |
public void getImagesParTaxon(InformationsRecherche informationsRecherche, int debut, int fin, ImagesParTaxonCallback callback);
|
|
|
13 |
|
|
|
14 |
public void getImagesParObservation(String observationId, ImagesParTaxonCallback callback);
|
|
|
15 |
|
|
|
16 |
public void supprimer(Image image, SuppressionImageCallback callback);
|
|
|
17 |
|
|
|
18 |
}
|