Uses of Class
com.ning.http.client.uri.UriComponents

Packages that use UriComponents
com.ning.http.client   
com.ning.http.client.oauth   
com.ning.http.client.providers.apache   
com.ning.http.client.providers.grizzly   
com.ning.http.client.providers.jdk   
com.ning.http.client.providers.netty   
com.ning.http.client.simple   
com.ning.http.client.uri   
com.ning.http.client.webdav   
com.ning.http.util   
 

Uses of UriComponents in com.ning.http.client
 

Fields in com.ning.http.client declared as UriComponents
protected  UriComponents HttpContent.uri
           
 

Methods in com.ning.http.client that return UriComponents
 UriComponents Response.getUri()
          Return the request UriComponents.
 UriComponents Realm.getUri()
           
 UriComponents Realm.RealmBuilder.getUri()
           
 UriComponents HttpContent.getUri()
          Return the request UriComponents
 UriComponents Request.getURI()
           
 

Methods in com.ning.http.client with parameters of type UriComponents
 String DefaultConnectionPoolStrategy.getKey(UriComponents uri)
           
 String ConnectionPoolKeyStrategy.getKey(UriComponents uri)
           
 ProxyServer ProxyServerSelector.select(UriComponents uri)
          Select a proxy server to use for the given URI.
 Realm.RealmBuilder Realm.RealmBuilder.setUri(UriComponents uri)
           
 T RequestBuilderBase.setURI(UriComponents uri)
           
 

Constructors in com.ning.http.client with parameters of type UriComponents
HttpContent(UriComponents uri, AsyncHttpProvider provider)
           
HttpResponseBodyPart(UriComponents uri, AsyncHttpProvider provider)
           
HttpResponseHeaders(UriComponents uri, AsyncHttpProvider provider)
           
HttpResponseHeaders(UriComponents uri, AsyncHttpProvider provider, boolean traillingHeaders)
           
HttpResponseStatus(UriComponents uri, AsyncHttpProvider provider)
           
 

Uses of UriComponents in com.ning.http.client.oauth
 

Methods in com.ning.http.client.oauth with parameters of type UriComponents
 String OAuthSignatureCalculator.calculateSignature(String method, UriComponents uri, long oauthTimestamp, String nonce, List<Param> formParams, List<Param> queryParams)
          Method for calculating OAuth signature using HMAC/SHA-1 method.
 

Uses of UriComponents in com.ning.http.client.providers.apache
 

Methods in com.ning.http.client.providers.apache that return UriComponents
 UriComponents ApacheResponse.getUri()
           
 

Constructors in com.ning.http.client.providers.apache with parameters of type UriComponents
ApacheResponseBodyPart(UriComponents uri, byte[] chunk, AsyncHttpProvider provider, boolean last)
           
ApacheResponseHeaders(UriComponents uri, org.apache.commons.httpclient.HttpMethodBase method, AsyncHttpProvider provider)
           
ApacheResponseStatus(UriComponents uri, org.apache.commons.httpclient.HttpMethodBase method, AsyncHttpProvider provider)
           
 

Uses of UriComponents in com.ning.http.client.providers.grizzly
 

Methods in com.ning.http.client.providers.grizzly that return UriComponents
 UriComponents GrizzlyResponse.getUri()
          Return the request UriComponents.
 

Constructors in com.ning.http.client.providers.grizzly with parameters of type UriComponents
GrizzlyResponseBodyPart(org.glassfish.grizzly.http.HttpContent content, UriComponents uri, org.glassfish.grizzly.Connection connection, AsyncHttpProvider provider)
           
GrizzlyResponseHeaders(org.glassfish.grizzly.http.HttpResponsePacket response, UriComponents uri, AsyncHttpProvider provider)
           
GrizzlyResponseStatus(org.glassfish.grizzly.http.HttpResponsePacket response, UriComponents uri, AsyncHttpProvider provider)
           
 

Uses of UriComponents in com.ning.http.client.providers.jdk
 

Methods in com.ning.http.client.providers.jdk that return UriComponents
 UriComponents JDKResponse.getUri()
           
 

Constructors in com.ning.http.client.providers.jdk with parameters of type UriComponents
ResponseBodyPart(UriComponents uri, byte[] chunk, AsyncHttpProvider provider, boolean last)
           
ResponseHeaders(UriComponents uri, HttpURLConnection urlConnection, AsyncHttpProvider provider)
           
ResponseStatus(UriComponents uri, HttpURLConnection urlConnection, AsyncHttpProvider provider)
           
 

Uses of UriComponents in com.ning.http.client.providers.netty
 

Methods in com.ning.http.client.providers.netty that return UriComponents
 UriComponents NettyResponse.getUri()
           
protected  UriComponents NettyResponseFuture.getURI()
           
 

Methods in com.ning.http.client.providers.netty with parameters of type UriComponents
protected static org.jboss.netty.handler.codec.http.HttpRequest NettyAsyncHttpProvider.buildRequest(AsyncHttpClientConfig config, Request request, UriComponents uri, boolean allowConnect, org.jboss.netty.buffer.ChannelBuffer buffer, ProxyServer proxyServer)
           
static
<T> NettyResponseFuture<T>
NettyAsyncHttpProvider.newFuture(UriComponents uri, Request request, AsyncHandler<T> asyncHandler, org.jboss.netty.handler.codec.http.HttpRequest nettyRequest, AsyncHttpClientConfig config, NettyAsyncHttpProvider provider, ProxyServer proxyServer)
           
protected  void NettyResponseFuture.setURI(UriComponents uri)
           
 

Constructors in com.ning.http.client.providers.netty with parameters of type UriComponents
NettyResponseFuture(UriComponents uri, Request request, AsyncHandler<V> asyncHandler, org.jboss.netty.handler.codec.http.HttpRequest nettyRequest, int requestTimeoutInMs, int idleConnectionTimeoutInMs, NettyAsyncHttpProvider asyncHttpProvider, ConnectionPoolKeyStrategy connectionPoolKeyStrategy, ProxyServer proxyServer)
           
ResponseBodyPart(UriComponents uri, org.jboss.netty.handler.codec.http.HttpResponse response, AsyncHttpProvider provider, boolean last)
           
ResponseBodyPart(UriComponents uri, org.jboss.netty.handler.codec.http.HttpResponse response, AsyncHttpProvider provider, org.jboss.netty.handler.codec.http.HttpChunk chunk, boolean last)
           
ResponseHeaders(UriComponents uri, org.jboss.netty.handler.codec.http.HttpResponse response, AsyncHttpProvider provider)
           
ResponseHeaders(UriComponents uri, org.jboss.netty.handler.codec.http.HttpResponse response, AsyncHttpProvider provider, org.jboss.netty.handler.codec.http.HttpChunkTrailer traillingHeaders)
           
ResponseStatus(UriComponents uri, org.jboss.netty.handler.codec.http.HttpResponse response, AsyncHttpProvider provider)
           
 

Uses of UriComponents in com.ning.http.client.simple
 

Methods in com.ning.http.client.simple with parameters of type UriComponents
 void SimpleAHCTransferListener.onBytesReceived(UriComponents uri, long amount, long current, long total)
          This method is called when bytes of the responses body are received.
 void SimpleAHCTransferListener.onBytesSent(UriComponents uri, long amount, long current, long total)
          This method is called when bytes are sent.
 void SimpleAHCTransferListener.onCompleted(UriComponents uri, int statusCode, String statusText)
          This method is called when the request is completed.
 void SimpleAHCTransferListener.onHeaders(UriComponents uri, HeaderMap headers)
          This method is called after the response headers are received.
 void SimpleAHCTransferListener.onStatus(UriComponents uri, int statusCode, String statusText)
          This method is called after the connection status is received.
 

Uses of UriComponents in com.ning.http.client.uri
 

Methods in com.ning.http.client.uri that return UriComponents
static UriComponents UriComponents.create(String originalUrl)
           
static UriComponents UriComponents.create(UriComponents context, String originalUrl)
           
 UriComponents UriComponents.withNewQuery(String newQuery)
           
 UriComponents UriComponents.withNewScheme(String newScheme)
           
 

Methods in com.ning.http.client.uri with parameters of type UriComponents
static UriComponents UriComponents.create(UriComponents context, String originalUrl)
           
 

Uses of UriComponents in com.ning.http.client.webdav
 

Methods in com.ning.http.client.webdav that return UriComponents
 UriComponents WebDavResponse.getUri()
           
 

Uses of UriComponents in com.ning.http.util
 

Methods in com.ning.http.util with parameters of type UriComponents
static String AsyncHttpProviderUtils.getAuthority(UriComponents uri)
           
static String AsyncHttpProviderUtils.getBaseUrl(UriComponents uri)
           
static int AsyncHttpProviderUtils.getDefaultPort(UriComponents uri)
           
static String AsyncHttpProviderUtils.getNonEmptyPath(UriComponents uri)
          Convenient for HTTP layer when targeting server root
static void AsyncHttpProviderUtils.validateSupportedScheme(UriComponents uri)
           
 



Copyright © 2014. All Rights Reserved.