Subversion Repositories eFlore/Applications.del

Rev

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

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