Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1513 Rev 1906
Line 1... Line 1...
1
package org.tela_botanica.client.modeles;
1
package org.tela_botanica.client.modeles;
Line 2... Line -...
2
 
-
 
3
import java.util.HashMap;
2
 
4
import java.util.Iterator;
3
import java.util.Iterator;
Line 5... Line 4...
5
import java.util.Set;
4
import java.util.Set;
Line 6... Line 5...
6
 
5
 
Line 7... Line 6...
7
import com.google.gwt.json.client.JSONObject;
6
import com.google.gwt.json.client.JSONObject;
-
 
7
 
-
 
8
public class Utilisateur extends aDonnee {
-
 
9
 
-
 
10
	private static final long serialVersionUID = -4016615552202089985L;
-
 
11
 
Line 8... Line 12...
8
 
12
	// Jeton encodé en base64 passé de manière automatique aux services dans un header
9
public class Utilisateur extends aDonnee {
13
	private static String jeton = "";
Line 10... Line 14...
10
 
14
	// Durée de vie du jeton en secondes (sert au rafraîchissement automatique)
Line 139... Line 143...
139
		return xml;
143
		return xml;
140
	}
144
	}
141
	public void setParametre(String param) {
145
	public void setParametre(String param) {
142
		set("parametre", param);
146
		set("parametre", param);
143
	}
147
	}
-
 
148
 
-
 
149
	public static String getJeton() {
-
 
150
		return Utilisateur.jeton;
-
 
151
	}
-
 
152
 
-
 
153
	public static void setJeton(String jeton) {
-
 
154
		Utilisateur.jeton = jeton;
-
 
155
	}
-
 
156
 
-
 
157
	public static int getDureeJeton() {
-
 
158
		return Utilisateur.duree;
-
 
159
	}
-
 
160
 
-
 
161
	public static void setDureeJeton(int duree) {
-
 
162
		Utilisateur.duree = duree;
-
 
163
	}
Line 144... Line 164...
144
	
164
	
145
	// +---------------------------------------------------------------------------------------------------------------+
165
	// +---------------------------------------------------------------------------------------------------------------+
146
	// IDENTIFIÉ
166
	// IDENTIFIÉ
147
	/**
167
	/**