Subversion Repositories eFlore/Archives.cel-v2

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 ddelon 1
package org.tela_botanica.client.modeles;
2
 
3
public class Utilisateur {
4
 
5
 
6
	private String identifiant=null;
7
	private boolean identifie=false;
8
 
9
	public Utilisateur(String identifiant, boolean identifie) {
10
		this.identifiant=identifiant;
11
		this.identifie=identifie;
12
	}
13
 
14
 
15
	/**
16
	 * Retourne l'identifiant de l'utilisateur identifie ou un identifiant de session
17
	 * @return String identifiant
18
	 */
19
 
20
	public String getIdentifiant() {
21
		return identifiant;
22
	}
23
 
24
	/**
25
	 * Retourne vrai si utilisateur identifie
26
	 * @return boolean
27
	 */
28
 
29
	public boolean isIdentifie() {
30
		return identifie;
31
	}
32
 
33
}