Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1162 Rev 1175
Line 430... Line 430...
430
			utilisateur = new Utilisateur(idUtilisateur);
430
			utilisateur = new Utilisateur(idUtilisateur);
431
		}
431
		}
Line 432... Line 432...
432
 
432
 
433
		return utilisateur;
433
		return utilisateur;
-
 
434
	}
-
 
435
	
-
 
436
	/**
-
 
437
	 * Recupere un utilisateur à partir du JSON
-
 
438
	 * 
-
 
439
	 * @param imageJson
-
 
440
	 * @return
-
 
441
	 */
-
 
442
	public static HashMap<String, String> parserPreferencesUtilisateur(JSONValue valeurJson) {
-
 
443
		
-
 
444
		JSONObject utilisateurJson = valeurJson.isObject();
-
 
445
		HashMap<String, String> preferences = new HashMap<String, String>();
-
 
446
		JSONObject preferencesJson = utilisateurJson.get("preferences").isObject();
-
 
447
		
-
 
448
		java.util.Iterator<String> it = preferencesJson.keySet().iterator();
-
 
449
		while (it.hasNext()) {
-
 
450
			String cle = it.next();
-
 
451
			preferences.put(cle, preferencesJson.get(cle).isString().stringValue());
-
 
452
		}
-
 
453
		return preferences;
Line 434... Line 454...
434
	}
454
	}
435
 
455
 
436
	/**
456
	/**
437
	 * Retourne un objet {@link ProtocoleServiceResultat} à partir d'un objet
457
	 * Retourne un objet {@link ProtocoleServiceResultat} à partir d'un objet