com.dropbox.core.http.GoogleAppEngineRequestor

Here are the examples of the java api class com.dropbox.core.http.GoogleAppEngineRequestor taken from open source projects.

1. ITUtil#newGoogleAppEngineRequestor()

Project: dropbox-sdk-java
File: ITUtil.java
public static GoogleAppEngineRequestor newGoogleAppEngineRequestor() {
    GoogleAppEngineRequestor requestor = new GoogleAppEngineRequestor();
    requestor.getOptions().setDeadline(// seconds
    (HttpRequestor.DEFAULT_CONNECT_TIMEOUT_MILLIS + READ_TIMEOUT) / 1000.0);
    return requestor;
}