Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 346 → Rev 345

/trunk/src/org/tela_botanica/del/client/services/rest/ImageServiceConcret.java
File deleted
/trunk/src/org/tela_botanica/del/client/services/rest/ImageService.java
1,12 → 1,14
package org.tela_botanica.del.client.services.rest;
 
import java.util.List;
 
import org.tela_botanica.del.client.modeles.Image;
import org.tela_botanica.del.client.modeles.InformationsRecherche;
import org.tela_botanica.del.client.services.rest.async.ImagesParTaxonCallback;
 
public interface ImageService {
 
public abstract void getImagesEfloreParTaxon(String nomTaxon, ImagesParTaxonCallback callback);
public abstract List<Image> getImagesEfloreParTaxon(String nomTaxon);
 
public abstract void getImagesParTaxon(InformationsRecherche informationsRecherche, int debut, int fin, ImagesParTaxonCallback callback);
public abstract List<Image> getImagesParTaxon(InformationsRecherche informationsRecherche, int debut, int fin);
 
}