Subversion Repositories eFlore/Applications.del

Rev

Rev 335 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 335 Rev 346
1
package org.tela_botanica.del.client.services.rest;
1
package org.tela_botanica.del.client.services.rest;
2
 
-
 
3
import java.util.List;
-
 
4
 
-
 
5
import org.tela_botanica.del.client.modeles.Image;
2
 
-
 
3
import org.tela_botanica.del.client.modeles.InformationsRecherche;
6
import org.tela_botanica.del.client.modeles.InformationsRecherche;
4
import org.tela_botanica.del.client.services.rest.async.ImagesParTaxonCallback;
7
 
5
 
8
public interface ImageService {
6
public interface ImageService {
9
 
7
 
10
	public abstract List<Image> getImagesEfloreParTaxon(String nomTaxon);
8
	public abstract void getImagesEfloreParTaxon(String nomTaxon, ImagesParTaxonCallback callback);
11
 
9
 
12
	public abstract List<Image> getImagesParTaxon(InformationsRecherche informationsRecherche, int debut, int fin);
10
	public abstract void getImagesParTaxon(InformationsRecherche informationsRecherche, int debut, int fin, ImagesParTaxonCallback callback);
13
 
11
 
14
}
12
}