Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
283 |
benjamin |
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;
|
335 |
benjamin |
6 |
import org.tela_botanica.del.client.modeles.InformationsRecherche;
|
283 |
benjamin |
7 |
|
|
|
8 |
public interface ImageService {
|
|
|
9 |
|
|
|
10 |
public abstract List<Image> getImagesEfloreParTaxon(String nomTaxon);
|
|
|
11 |
|
335 |
benjamin |
12 |
public abstract List<Image> getImagesParTaxon(InformationsRecherche informationsRecherche, int debut, int fin);
|
283 |
benjamin |
13 |
|
|
|
14 |
}
|