Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1984 Rev 1986
Line 2... Line 2...
2
 
2
 
3
import java.util.ArrayList;
3
import java.util.ArrayList;
4
import java.util.Date;
4
import java.util.Date;
5
import java.util.HashMap;
5
import java.util.HashMap;
-
 
6
import java.util.Iterator;
6
import java.util.Iterator;
7
import java.util.LinkedHashMap;
-
 
8
import java.util.List;
Line 7... Line 9...
7
import java.util.List;
9
import java.util.Map;
8
 
10
 
9
import org.tela_botanica.del.client.cache.CacheClient;
11
import org.tela_botanica.del.client.cache.CacheClient;
10
import org.tela_botanica.del.client.config.Config;
12
import org.tela_botanica.del.client.config.Config;
Line 705... Line 707...
705
		if (retour != null) {
707
		if (retour != null) {
706
			id = getValeurOuVide(retour, "id_vote");
708
			id = getValeurOuVide(retour, "id_vote");
707
		}
709
		}
708
		return id;
710
		return id;
709
	}
711
	}
-
 
712
 
-
 
713
	public static Map<String, String> parserListePays(JSONValue retourJson) {
-
 
714
		Map<String, String> listePays = new LinkedHashMap<String, String>();
-
 
715
		JSONArray tableauPays = retourJson.isArray();
-
 
716
		int nbPays = (int) tableauPays.size();
-
 
717
		for (int i = 0; i < nbPays; i++) {
-
 
718
			JSONObject pays = tableauPays.get(i).isObject();
-
 
719
			listePays.put(pays.get("code_iso_3166_1").isString().stringValue(), pays.get("nom_fr").isString().stringValue());
-
 
720
		}
-
 
721
		return listePays;
-
 
722
	}
710
}
723
}