2212 |
arthur |
1 |
package org.tela_botanica.del.client.modeles;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
public class ObservationServiceResultat {
|
|
|
6 |
|
|
|
7 |
private List<Observation> observations;
|
|
|
8 |
|
|
|
9 |
private int nbTotalObservationsPourLaRecherche;
|
|
|
10 |
|
|
|
11 |
public List<Observation> getObservations() {
|
|
|
12 |
return observations;
|
|
|
13 |
}
|
|
|
14 |
|
|
|
15 |
public void setObservations(List<Observation> observations) {
|
|
|
16 |
this.observations = observations;
|
|
|
17 |
}
|
|
|
18 |
|
|
|
19 |
public int getNbTotalObservationsPourLaRecherche() {
|
|
|
20 |
return nbTotalObservationsPourLaRecherche;
|
|
|
21 |
}
|
|
|
22 |
|
|
|
23 |
public void setNbTotalObservationsPourLaRecherche(int nbTotalObservationsPourLaRecherche) {
|
|
|
24 |
this.nbTotalObservationsPourLaRecherche = nbTotalObservationsPourLaRecherche;
|
|
|
25 |
}
|
|
|
26 |
}
|