Uses of Class
java.net.URI
| Package | Description |
|---|---|
| com.squareup.okhttp | |
| com.squareup.okhttp.internal | |
| com.squareup.okhttp.internal.http | |
| java.io | |
| java.net | |
| org.apache.http.client |
The API for client-side HTTP communication and
entry point to the HttpClient module.
|
| org.apache.http.client.methods |
Request implementations for the various HTTP methods like GET and POST.
|
| org.apache.http.client.utils |
Helpers and utility classes for HttpClient.
|
| org.apache.http.impl.client | |
| org.conscrypt |
-
Uses of URI in com.squareup.okhttp
Methods in com.squareup.okhttp with parameters of type URI Modifier and Type Method Description CacheResponseHttpResponseCache. get(URI uri, String requestMethod, Map<String,List<String>> requestHeaders)CacheResponseOkResponseCache. get(URI uri, String requestMethod, Map<String,List<String>> requestHeaders)voidOkResponseCache. maybeRemove(String requestMethod, URI uri)Remove any cache entries for the supplieduriif the request method invalidates.CacheRequestHttpResponseCache. put(URI uri, URLConnection urlConnection)CacheRequestOkResponseCache. put(URI uri, URLConnection urlConnection) -
Uses of URI in com.squareup.okhttp.internal
Methods in com.squareup.okhttp.internal that return URI Modifier and Type Method Description URIPlatform. toUriLenient(URL url)Methods in com.squareup.okhttp.internal with parameters of type URI Modifier and Type Method Description static intUtil. getEffectivePort(URI uri) -
Uses of URI in com.squareup.okhttp.internal.http
Methods in com.squareup.okhttp.internal.http that return URI Modifier and Type Method Description URIHttpEngine. getUri()URIRequestHeaders. getUri()URIResponseHeaders. getUri()Methods in com.squareup.okhttp.internal.http with parameters of type URI Modifier and Type Method Description CacheResponseOkResponseCacheAdapter. get(URI uri, String requestMethod, Map<String,List<String>> requestHeaders)voidOkResponseCacheAdapter. maybeRemove(String requestMethod, URI uri)CacheRequestOkResponseCacheAdapter. put(URI uri, URLConnection urlConnection)Constructors in com.squareup.okhttp.internal.http with parameters of type URI Constructor Description RequestHeaders(URI uri, RawHeaders headers)ResponseHeaders(URI uri, RawHeaders headers)RouteSelector(Address address, URI uri, ProxySelector proxySelector, ConnectionPool pool, Dns dns, RouteDatabase routeDatabase) -
Uses of URI in java.io
-
Uses of URI in java.net
Methods in java.net that return URI Modifier and Type Method Description static URIURI. create(String uri)Returns the URI formed by parsinguri.URIURI. normalize()Normalizes the path part of this URI.URIURI. parseServerAuthority()Tries to parse the authority component of this URI to divide it into the host, port, and user-info.URIURI. relativize(URI relative)Makes the given URIrelativeto a relative URI against the URI represented by this instance.URIURI. resolve(String relative)Creates a new URI instance by parsing the given stringrelativeand resolves the created URI against the URI represented by this instance.URIURI. resolve(URI relative)Resolves the given URIrelativeagainst the URI represented by this instance.URIURL. toURI()Returns the URI equivalent to this URL.URIURL. toURILenient()Encodes this URL to the equivalent URI after escaping characters that are not permitted by URI.Methods in java.net that return types with arguments of type URI Modifier and Type Method Description List<URI>CookieStore. getURIs()Get a set of URIs, which is composed of associated URI with all the cookies in the store.Methods in java.net with parameters of type URI Modifier and Type Method Description voidCookieStore. add(URI uri, HttpCookie cookie)Saves a HTTP cookie to this store.intURI. compareTo(URI uri)Compares this URI with the given argumenturi.abstract voidProxySelector. connectFailed(URI uri, SocketAddress address, IOException failure)Notifies thisProxySelectorthat a connection to the proxy server could not be established.abstract Map<String,List<String>>CookieHandler. get(URI uri, Map<String,List<String>> requestHeaders)Gets all cookies for a specific URI from the cookie cache.Map<String,List<String>>CookieManager. get(URI uri, Map<String,List<String>> requestHeaders)Searches and gets all cookies in the cache by the specified uri in the request header.List<HttpCookie>CookieStore. get(URI uri)Retrieves cookies that match the specified URI.abstract CacheResponseResponseCache. get(URI uri, String requestMethod, Map<String,List<String>> requestHeaders)Returns the cached response corresponding to the given request.abstract voidCookieHandler. put(URI uri, Map<String,List<String>> responseHeaders)Sets all cookies of a specific URI in theresponseHeadersinto the cookie cache.voidCookieManager. put(URI uri, Map<String,List<String>> responseHeaders)Sets cookies according to uri and responseHeadersabstract CacheRequestResponseCache. put(URI uri, URLConnection connection)Allows the protocol handler to cache data after retrieving resources.URIURI. relativize(URI relative)Makes the given URIrelativeto a relative URI against the URI represented by this instance.booleanCookieStore. remove(URI uri, HttpCookie cookie)Remove the specified cookie from the store.URIURI. resolve(URI relative)Resolves the given URIrelativeagainst the URI represented by this instance.abstract List<Proxy>ProxySelector. select(URI uri)Returns the proxy servers to use on connections touri.booleanCookiePolicy. shouldAccept(URI uri, HttpCookie cookie)This method is used to determine whether or not the specified cookie should be accepted. -
Uses of URI in org.apache.http.client
Methods in org.apache.http.client that return URI Modifier and Type Method Description URIRedirectHandler. getLocationURI(HttpResponse response, HttpContext context)Determines the location request is expected to be redirected to given the response from the target server and the current request execution context. -
Uses of URI in org.apache.http.client.methods
Methods in org.apache.http.client.methods that return URI Modifier and Type Method Description URIHttpRequestBase. getURI()URIHttpUriRequest. getURI()Returns the URI this request uses, such ashttp://example.org/path/to/file.Methods in org.apache.http.client.methods with parameters of type URI Modifier and Type Method Description voidHttpRequestBase. setURI(URI uri) -
Uses of URI in org.apache.http.client.utils
Methods in org.apache.http.client.utils that return URI Modifier and Type Method Description static URIURIUtils. createURI(String scheme, String host, int port, String path, String query, String fragment)Constructs aURIusing all the parameters.static URIURIUtils. resolve(URI baseURI, String reference)Resolves a URI reference against a base URI.static URIURIUtils. resolve(URI baseURI, URI reference)Resolves a URI reference against a base URI.static URIURIUtils. rewriteURI(URI uri, HttpHost target)A convenience method forURIUtils.rewriteURI(URI, HttpHost, boolean)that always keeps the fragment.static URIURIUtils. rewriteURI(URI uri, HttpHost target, boolean dropFragment)A convenience method for creating a newURIwhose scheme, host and port are taken from the target host, but whose path, query and fragment are taken from the existing URI.Methods in org.apache.http.client.utils with parameters of type URI Modifier and Type Method Description static List<NameValuePair>URLEncodedUtils. parse(URI uri, String encoding)Returns a list ofNameValuePairsas built from the URI's query portion.static URIURIUtils. resolve(URI baseURI, String reference)Resolves a URI reference against a base URI.static URIURIUtils. resolve(URI baseURI, URI reference)Resolves a URI reference against a base URI.static URIURIUtils. rewriteURI(URI uri, HttpHost target)A convenience method forURIUtils.rewriteURI(URI, HttpHost, boolean)that always keeps the fragment.static URIURIUtils. rewriteURI(URI uri, HttpHost target, boolean dropFragment)A convenience method for creating a newURIwhose scheme, host and port are taken from the target host, but whose path, query and fragment are taken from the existing URI. -
Uses of URI in org.apache.http.impl.client
Methods in org.apache.http.impl.client that return URI Modifier and Type Method Description URIDefaultRedirectHandler. getLocationURI(HttpResponse response, HttpContext context)URIRequestWrapper. getURI()Methods in org.apache.http.impl.client with parameters of type URI Modifier and Type Method Description voidRedirectLocations. add(URI uri)Adds a new URI to the list of redirects.booleanRedirectLocations. contains(URI uri)Returns true if this collection contains the given URI.booleanRedirectLocations. remove(URI uri)Removes a URI from the list of redirects.voidRequestWrapper. setURI(URI uri) -
Uses of URI in org.conscrypt
Constructors in org.conscrypt with parameters of type URI Constructor Description TrustedCertificateStore(URI systemDir, URI addedDir, URI deletedDir)