Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 1319 → Rev 1320

/trunk/src/org/tela_botanica/client/synchronisation/Reponse.java
New file
0,0 → 1,24
package org.tela_botanica.client.synchronisation;
 
public class Reponse {
private Object retourRequete;
private int seqId;
public Reponse(Object retour, int seqId) {
retourRequete = retour;
this.seqId = seqId;
}
public Object obtenirRetour() {
return this.retourRequete;
}
public void setSeqId(int numeroSequence) {
this.seqId = numeroSequence;
}
public int obtenirNumeroSequence() {
return this.seqId;
}
}