Uses of Interface
com.dyuproject.util.http.HttpConnector.Response

Packages that use HttpConnector.Response
com.dyuproject.oauth   
com.dyuproject.util.http   
 

Uses of HttpConnector.Response in com.dyuproject.oauth
 

Methods in com.dyuproject.oauth that return HttpConnector.Response
 HttpConnector.Response Consumer.fetchToken(Endpoint ep, Token token)
          Fetches the token using the given endpoint and token - and returns the http response HttpConnector.Response.
 HttpConnector.Response Consumer.fetchToken(Endpoint ep, TokenExchange exchange, Token token)
          Fetches the token using the given endpoint, exchange and token - and returns the http response HttpConnector.Response.
 HttpConnector.Response Consumer.fetchToken(Endpoint ep, UrlEncodedParameterMap params, TokenExchange exchange, Token token)
          Fetches the token using the given endpoint, params, exchange and token - and returns the http response HttpConnector.Response.
 HttpConnector.Response HttpAuthTransport.send(UrlEncodedParameterMap params, Endpoint ep, Token token, TokenExchange exchange, NonceAndTimestamp nts, Signature signature, HttpConnector connector)
           
abstract  HttpConnector.Response Transport.send(UrlEncodedParameterMap params, Endpoint ep, Token token, TokenExchange exchange, NonceAndTimestamp nts, Signature signature, HttpConnector connector)
          Sends the params to the service provided and returns the http response HttpConnector.Response.
 HttpConnector.Response HttpPostTransport.send(UrlEncodedParameterMap params, Endpoint ep, Token token, TokenExchange exchange, NonceAndTimestamp nts, Signature signature, HttpConnector connector)
           
 HttpConnector.Response HttpGetTransport.send(UrlEncodedParameterMap params, Endpoint ep, Token token, TokenExchange exchange, NonceAndTimestamp nts, Signature signature, HttpConnector connector)
           
 

Uses of HttpConnector.Response in com.dyuproject.util.http
 

Methods in com.dyuproject.util.http that return HttpConnector.Response
 HttpConnector.Response HttpConnector.doDELETE(String url, Iterable<HttpConnector.Parameter> headers)
          Makes a DELETE request with the given http headers.
 HttpConnector.Response SimpleHttpConnector.doDELETE(String url, Iterable<HttpConnector.Parameter> headers)
           
 HttpConnector.Response HttpConnector.doDELETE(String url, Iterable<HttpConnector.Parameter> headers, Iterable<HttpConnector.Parameter> parameters)
          Makes a DELETE request with the given http headers, parameters.
 HttpConnector.Response SimpleHttpConnector.doDELETE(String url, Iterable<HttpConnector.Parameter> headers, Iterable<HttpConnector.Parameter> parameters)
           
 HttpConnector.Response HttpConnector.doDELETE(String url, Iterable<HttpConnector.Parameter> headers, Map<?,?> parameters)
          Makes a DELETE request with the given http headers, parameters.
 HttpConnector.Response SimpleHttpConnector.doDELETE(String url, Iterable<HttpConnector.Parameter> headers, Map<?,?> parameters)
           
 HttpConnector.Response HttpConnector.doDELETE(String url, Map<?,?> headers)
          Makes a DELETE request with the given http headers.
 HttpConnector.Response SimpleHttpConnector.doDELETE(String url, Map<?,?> headers)
           
 HttpConnector.Response HttpConnector.doDELETE(String url, Map<?,?> headers, Map<?,?> parameters)
          Makes a DELETE request with the given http headers, parameters.
 HttpConnector.Response SimpleHttpConnector.doDELETE(String url, Map<?,?> headers, Map<?,?> parameters)
           
 HttpConnector.Response HttpConnector.doGET(String url, Iterable<HttpConnector.Parameter> headers)
          Makes a GET request with the given http headers.
 HttpConnector.Response SimpleHttpConnector.doGET(String url, Iterable<HttpConnector.Parameter> headers)
           
 HttpConnector.Response HttpConnector.doGET(String url, Iterable<HttpConnector.Parameter> headers, Iterable<HttpConnector.Parameter> parameters)
          Makes a GET request with the given http headers, parameters.
 HttpConnector.Response SimpleHttpConnector.doGET(String url, Iterable<HttpConnector.Parameter> headers, Iterable<HttpConnector.Parameter> parameters)
           
 HttpConnector.Response HttpConnector.doGET(String url, Iterable<HttpConnector.Parameter> headers, Map<?,?> parameters)
          Makes a GET request with the given http headers, parameters.
 HttpConnector.Response SimpleHttpConnector.doGET(String url, Iterable<HttpConnector.Parameter> headers, Map<?,?> parameters)
           
 HttpConnector.Response HttpConnector.doGET(String url, Map<?,?> headers)
          Makes a GET request with the given http headers.
 HttpConnector.Response SimpleHttpConnector.doGET(String url, Map<?,?> headers)
           
 HttpConnector.Response HttpConnector.doGET(String url, Map<?,?> headers, Map<?,?> parameters)
          Makes a GET request with the given http headers, parameters.
 HttpConnector.Response SimpleHttpConnector.doGET(String url, Map<?,?> headers, Map<?,?> parameters)
           
 HttpConnector.Response HttpConnector.doHEAD(String url, Iterable<HttpConnector.Parameter> headers)
          Makes a HEAD request with the given http headers.
 HttpConnector.Response SimpleHttpConnector.doHEAD(String url, Iterable<HttpConnector.Parameter> headers)
           
 HttpConnector.Response HttpConnector.doHEAD(String url, Map<?,?> headers)
          Makes a HEAD request with the given http headers.
 HttpConnector.Response SimpleHttpConnector.doHEAD(String url, Map<?,?> headers)
           
 HttpConnector.Response HttpConnector.doPOST(String url, Iterable<HttpConnector.Parameter> headers, Iterable<HttpConnector.Parameter> parameters, String charset)
          Makes a POST request with the given http headers, parameters and the charset - which will be appended in the Content-Type header.
 HttpConnector.Response SimpleHttpConnector.doPOST(String url, Iterable<HttpConnector.Parameter> headers, Iterable<HttpConnector.Parameter> parameters, String charset)
           
 HttpConnector.Response HttpConnector.doPOST(String url, Iterable<HttpConnector.Parameter> headers, Map<?,?> parameters, String charset)
          Makes a POST request with the given http headers, parameters and the charset - which will be appended in the Content-Type header.
 HttpConnector.Response SimpleHttpConnector.doPOST(String url, Iterable<HttpConnector.Parameter> headers, Map<?,?> parameters, String charset)
           
 HttpConnector.Response HttpConnector.doPOST(String url, Iterable<HttpConnector.Parameter> headers, String contentType, byte[] data)
          Makes a POST request with the given http headers, parameters, contentType and the content data.
 HttpConnector.Response SimpleHttpConnector.doPOST(String url, Iterable<HttpConnector.Parameter> headers, String contentType, byte[] data)
           
 HttpConnector.Response HttpConnector.doPOST(String url, Iterable<HttpConnector.Parameter> headers, String contentType, InputStreamReader reader)
          Makes a POST request with the given http headers, parameters, contentType and the content reader as InputStreamReader.
 HttpConnector.Response SimpleHttpConnector.doPOST(String url, Iterable<HttpConnector.Parameter> headers, String contentType, InputStreamReader reader)
           
 HttpConnector.Response HttpConnector.doPOST(String url, Map<?,?> headers, Iterable<HttpConnector.Parameter> parameters, String charset)
          Makes a POST request with the given http headers, parameters and the charset - which will be appended in the Content-Type header.
 HttpConnector.Response SimpleHttpConnector.doPOST(String url, Map<?,?> headers, Iterable<HttpConnector.Parameter> parameters, String charset)
           
 HttpConnector.Response HttpConnector.doPOST(String url, Map<?,?> headers, Map<?,?> parameters, String charset)
          Makes a POST request with the given http headers, parameters and the charset - which will be appended in the Content-Type header.
 HttpConnector.Response SimpleHttpConnector.doPOST(String url, Map<?,?> headers, Map<?,?> parameters, String charset)
           
 HttpConnector.Response HttpConnector.doPOST(String url, Map<?,?> headers, String contentType, byte[] data)
          Makes a POST request with the given http headers, parameters and the content data.
 HttpConnector.Response SimpleHttpConnector.doPOST(String url, Map<?,?> headers, String contentType, byte[] data)
           
 HttpConnector.Response HttpConnector.doPOST(String url, Map<?,?> headers, String contentType, InputStreamReader reader)
          Makes a POST request with the given http headers, parameters, contentType and the content reader as InputStreamReader.
 HttpConnector.Response SimpleHttpConnector.doPOST(String url, Map<?,?> headers, String contentType, InputStreamReader reader)
           
 HttpConnector.Response HttpConnector.doPUT(String url, Iterable<HttpConnector.Parameter> headers, Iterable<HttpConnector.Parameter> parameters, String charset)
          Makes a PUT request with the given http headers, parameters and the charset - which will be appended in the Content-Type header.
 HttpConnector.Response SimpleHttpConnector.doPUT(String url, Iterable<HttpConnector.Parameter> headers, Iterable<HttpConnector.Parameter> parameters, String charset)
           
 HttpConnector.Response HttpConnector.doPUT(String url, Iterable<HttpConnector.Parameter> headers, Map<?,?> parameters, String charset)
          Makes a PUT request with the given http headers, parameters and the charset - which will be appended in the Content-Type header.
 HttpConnector.Response SimpleHttpConnector.doPUT(String url, Iterable<HttpConnector.Parameter> headers, Map<?,?> parameters, String charset)
           
 HttpConnector.Response HttpConnector.doPUT(String url, Iterable<HttpConnector.Parameter> headers, String contentType, byte[] data)
          Makes a PUT request with the given http headers, parameters and the content data.
 HttpConnector.Response SimpleHttpConnector.doPUT(String url, Iterable<HttpConnector.Parameter> headers, String contentType, byte[] data)
           
 HttpConnector.Response HttpConnector.doPUT(String url, Iterable<HttpConnector.Parameter> headers, String contentType, InputStreamReader reader)
          Makes a PUT request with the given http headers, parameters, contentType and the content reader as InputStreamReader.
 HttpConnector.Response SimpleHttpConnector.doPUT(String url, Iterable<HttpConnector.Parameter> headers, String contentType, InputStreamReader reader)
           
 HttpConnector.Response HttpConnector.doPUT(String url, Map<?,?> headers, Iterable<HttpConnector.Parameter> parameters, String charset)
          Makes a PUT request with the given http headers, parameters and the charset - which will be appended in the Content-Type header.
 HttpConnector.Response SimpleHttpConnector.doPUT(String url, Map<?,?> headers, Iterable<HttpConnector.Parameter> parameters, String charset)
           
 HttpConnector.Response HttpConnector.doPUT(String url, Map<?,?> headers, Map<?,?> parameters, String charset)
          Makes a PUT request with the given http headers, parameters and the charset - which will be appended in the Content-Type header.
 HttpConnector.Response SimpleHttpConnector.doPUT(String url, Map<?,?> headers, Map<?,?> parameters, String charset)
           
 HttpConnector.Response HttpConnector.doPUT(String url, Map<?,?> headers, String contentType, byte[] data)
          Makes a PUT request with the given http headers, parameters and the content data.
 HttpConnector.Response SimpleHttpConnector.doPUT(String url, Map<?,?> headers, String contentType, byte[] data)
           
 HttpConnector.Response HttpConnector.doPUT(String url, Map<?,?> headers, String contentType, InputStreamReader reader)
          Makes a PUT request with the given http headers, parameters, contentType and the content reader as InputStreamReader.
 HttpConnector.Response SimpleHttpConnector.doPUT(String url, Map<?,?> headers, String contentType, InputStreamReader reader)
           
 



Copyright © 2008-2013. All Rights Reserved.