Subversion Repositories eFlore/Applications.cel

Rev

Rev 2 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

package org.tela_botanica.client.modeles;

public class Utilisateur {

        private String identifiant = null;
        private boolean identifie = false;

        public Utilisateur(String identifiant, boolean identifie) {
                this.identifiant = identifiant;
                this.identifie = identifie;
        }

        /**
         * Retourne l'identifiant de l'utilisateur identifie ou un identifiant de
         * session
         * 
         * @return String identifiant
         */

        public String getIdentifiant() {
                return identifiant;
        }

        /**
         * Retourne vrai si utilisateur identifie
         * 
         * @return boolean
         */

        public boolean isIdentifie() {
                return identifie;
        }

}