Subversion Repositories eFlore/Applications.del

Rev

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

Rev 335 Rev 359
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
 
2
 
5
import org.tela_botanica.del.client.modeles.InformationsRecherche;
3
import org.tela_botanica.del.client.modeles.InformationsRecherche;
6
import org.tela_botanica.del.client.modeles.Observation;
4
import org.tela_botanica.del.client.modeles.ObservationServiceResultat;
7
 
5
 
8
public interface ObservationService {
6
public interface ObservationService {
9
 
7
 
10
	public List<Observation> getObservations(InformationsRecherche informationsRecherche);
-
 
11
 
-
 
12
	public List<Observation> getObservations();
8
	public ObservationServiceResultat getObservations(InformationsRecherche informationsRecherche, int debut, int fin);
13
 
9
 
14
}
10
}