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;
|
|
|
6 |
|
|
|
7 |
public interface ImageService {
|
|
|
8 |
|
|
|
9 |
public abstract List<Image> getImagesEfloreParTaxon(String nomTaxon);
|
|
|
10 |
|
| 291 |
benjamin |
11 |
public abstract List<Image> getImages(int debut, int fin);
|
| 312 |
gduche |
12 |
|
|
|
13 |
public abstract List<Image> getImagesParTaxon(String taxon, int debut, int fin);
|
| 283 |
benjamin |
14 |
|
|
|
15 |
}
|