D | OAuthResponseMessage.java | 25 import net.oauth.http.HttpMessage; 26 import net.oauth.http.HttpResponseMessage; 36 OAuthResponseMessage(HttpResponseMessage http) throws IOException in OAuthResponseMessage() argument 38 super(http.method, http.url.toExternalForm(), null); in OAuthResponseMessage() 39 this.http = http; in OAuthResponseMessage() 40 getHeaders().addAll(http.headers); in OAuthResponseMessage() 41 for (Map.Entry<String, String> header : http.headers) { in OAuthResponseMessage() 52 private final HttpMessage http; field in OAuthResponseMessage 57 return http.getBody(); in getBodyAsStream() 63 return http.getContentCharset(); in getBodyEncoding() [all …]
|