Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 238 Rev 264
Line 2... Line 2...
2
 
2
 
3
import java.util.Iterator;
3
import java.util.Iterator;
4
import java.util.Map;
4
import java.util.Map;
Line -... Line 5...
-
 
5
import java.util.Set;
5
import java.util.Set;
6
 
6
 
7
import com.google.gwt.core.client.GWT;
7
import com.google.gwt.http.client.URL;
8
import com.google.gwt.http.client.URL;
Line 8... Line 9...
8
import com.google.gwt.json.client.JSONObject;
9
import com.google.gwt.json.client.JSONObject;
Line 9... Line 10...
9
import com.google.gwt.user.client.Window;
10
import com.google.gwt.user.client.Window;
10
 
11
 
11
public class Publication extends aDonnee {
12
public class Publication extends aDonnee {
12
 
13
 
13
	/**
14
	/**
Line 14... Line 15...
14
	 * Préfixe à retirer pour construire les noms des clés
15
	 * Préfixe à retirer pour construire les noms des clés
15
	 * et à rajouter lors de la transformation en requête
16
	 * et à rajouter lors de la transformation en requête
16
	 */
17
	 */
17
	private static String prefixe = "cpu_";
18
	private static String prefixe = "cpu";
Line 145... Line 146...
145
		String reqString = "" ;
146
		String reqString = "" ;
Line 146... Line 147...
146
		
147
		
147
		Map<String,Object> clesValeurs = getProperties() ;
148
		Map<String,Object> clesValeurs = getProperties() ;
148
		for(Iterator<String> it = clesValeurs.keySet().iterator(); it.hasNext();) {
149
		for(Iterator<String> it = clesValeurs.keySet().iterator(); it.hasNext();) {
149
			String cle = it.next();
150
			String cle = it.next();
150
				reqString += "&"+prefixe+cle+"="+URL.encode((String)clesValeurs.get(cle));
151
				reqString += "&"+prefixe+"_"+cle+"="+URL.encode((String)clesValeurs.get(cle));
151
		}
152
		}
152
		Window.alert(reqString);
153
		GWT.log(reqString, null);
153
		return reqString;
154
		return reqString;
154
	}
155
	}
155
}
156
}