Subversion Repositories eFlore/Applications.coel

Rev

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

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;
        }
}