Rev 2 | Rev 12 | Go to most recent revision | Blame | Compare with Previous | 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;}}