Subversion Repositories eFlore/Applications.coel

Rev

Rev 64 | Rev 66 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 64 Rev 65
Line 54... Line 54...
54
	}
54
	}
Line 55... Line 55...
55
	
55
	
56
	public void setIdentifie(Boolean bool) {
56
	public void setIdentifie(Boolean bool) {
57
		set("identifie", bool);
57
		set("identifie", bool);
58
	}
58
	}
-
 
59
	
-
 
60
	public void setIdentifiant(String i) {
-
 
61
		set("identifiant", i);
-
 
62
	}
59
 
63
	
60
	/**
64
	/**
61
	 * Retourne l'identifiant de l'utilisateur identifié ou un identifiant de session.
65
	 * Retourne l'identifiant de l'utilisateur identifié ou un identifiant de session.
62
	 * @return String identifiant
66
	 * @return String identifiant
63
	 */
67
	 */
Line 86... Line 90...
86
	 * @return boolean
90
	 * @return boolean
87
	 */
91
	 */
88
	public boolean isIdentifie() {
92
	public boolean isIdentifie() {
89
		return get("identifie");
93
		return get("identifie");
90
	}
94
	}
-
 
95
 
-
 
96
	public void setLogin(String l) {
-
 
97
		set("login", l);
-
 
98
	}
-
 
99
	
-
 
100
	public void setMotDePasse(String mdp) {
-
 
101
		set("mot_de_passe", mdp);
-
 
102
	}
Line 91... Line 103...
91
	
103