Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
1918 |
aurelien |
1 |
package org.tela_botanica.client.util;
|
|
|
2 |
|
|
|
3 |
import com.google.gwt.http.client.RequestBuilder;
|
|
|
4 |
|
|
|
5 |
public class RequestBuilderWithCredentials extends RequestBuilder {
|
|
|
6 |
|
|
|
7 |
public RequestBuilderWithCredentials(Method httpMethod, String url) {
|
|
|
8 |
super(httpMethod, url);
|
|
|
9 |
this.setIncludeCredentials(true);
|
|
|
10 |
}
|
|
|
11 |
}
|