Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package org.tela_botanica.client.http;
import com.google.gwt.http.client.RequestBuilder;
public class RequestBuilderWithCredentials extends RequestBuilder {
public RequestBuilderWithCredentials(Method httpMethod, String url) {
super(httpMethod, url);
this.setIncludeCredentials(true);
}
}