Subversion Repositories eFlore/Applications.del

Rev

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

Rev 2077 Rev 2087
Line 4... Line 4...
4
 
4
 
Line 5... Line 5...
5
import com.google.gwt.http.client.RequestBuilder;
5
import com.google.gwt.http.client.RequestBuilder;
Line -... Line 6...
-
 
6
 
-
 
7
public class RequestBuilderWithCredentials extends RequestBuilder {
-
 
8
 
6
 
9
	/**
-
 
10
	 * Envoie une requête avec les headers "Credentials" (CORS) et "Authorization" (SSO)
-
 
11
	 */
-
 
12
	public RequestBuilderWithCredentials(Method httpMethod, String url) {
-
 
13
		this(httpMethod, url, true);
-
 
14
	}
-
 
15
 
-
 
16
	/**
-
 
17
	 * Envoie une requête avec un header "Credentials" pour CORS (ajax.io); si
-
 
18
	 * authorizationHeader vaut true, envoie aussi le jeton SSO (s'il existe) dans
7
public class RequestBuilderWithCredentials extends RequestBuilder {
19
	 * le header "Authorization"
8
 
20
	 */
9
	public RequestBuilderWithCredentials(Method httpMethod, String url) {
21
	public RequestBuilderWithCredentials(Method httpMethod, String url, boolean authorizationHeader) {
10
		super(httpMethod, url);
22
		super(httpMethod, url);
11
		if(Utilisateur.getJeton() != null && ! Utilisateur.getJeton().isEmpty()) {
23
		if(authorizationHeader && Utilisateur.getJeton() != null && ! Utilisateur.getJeton().isEmpty()) {
12
			this.setHeader("Authorization", Utilisateur.getJeton());
24
			this.setHeader("Authorization", Utilisateur.getJeton());
13
		}
25
		}