Subversion Repositories eFlore/Applications.cel

Rev

Rev 140 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 140 Rev 143
Line 45... Line 45...
45
	 */
45
	 */
46
	public boolean isAdmin() {
46
	public boolean isAdmin() {
47
		return isAdmin;
47
		return isAdmin;
48
	}
48
	}
Line -... Line 49...
-
 
49
	
-
 
50
	/**
-
 
51
	 * Met à jour l'identité utilisée (dans le cas où l'utilisateur est admin)
-
 
52
	 * @param identite la nouvelle identité
49
	
53
	 */
-
 
54
	public void setIdentite(String identite) {
50
	public void setIdentite(String identite) {
55
		if(isAdmin()) {
-
 
56
			this.identite = identite;
-
 
57
		}
-
 
58
		else {
-
 
59
			this.identite = identifiant ;
51
		this.identite = identite;
60
		}
Line -... Line 61...
-
 
61
	}
-
 
62
	
-
 
63
	/**
-
 
64
	 * Renvoie l'identité en cours d'utilisation (par défaut, la même valeur que l'identifiant si
-
 
65
	 * l'utilisateur est admin)
52
	}
66
	 * @return identite
53
	
67
	 */
54
	public String getIdentite() {
68
	public String getIdentite() {
Line 55... Line 69...
55
		return identite;
69
		return identite;