Subversion Repositories eFlore/Applications.coel

Rev

Rev 1415 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1320 gduche 1
package org.tela_botanica.client.synchronisation;
2
 
3
public class Reponse {
4
 
5
	private Object retourRequete;
6
	private int seqId;
7
 
8
	public Reponse(Object retour, int seqId)	{
9
		retourRequete = retour;
10
		this.seqId = seqId;
11
	}
12
 
13
	public Object obtenirRetour()	{
14
		return this.retourRequete;
15
	}
16
 
17
	public void setSeqId(int numeroSequence)	{
18
		this.seqId = numeroSequence;
19
	}
20
 
21
	public int obtenirNumeroSequence()	{
22
		return this.seqId;
23
	}
24
}