• BlackBerry Dynamics
  • Runtime library for Android applications
  • 12.0.1.79
HttpGet Class Reference

HTTP GET method. More...

Inheritance diagram for HttpGet:
HttpRequestBase AbstractHttpMessage HttpUriRequest AbortableHttpRequest HttpMessage HttpRequest HttpMessage

Description

The HTTP GET method is defined in section 9.3 of RFC2616:

The GET method means retrieve whatever information (in the form of an entity) is identified by the Request-URI. If the Request-URI refers to a data-producing process, it is the produced data which shall be returned as the entity in the response and not the source text of the process, unless that text happens to be the output of the process.

GetMethods will follow redirect requests from the http server by default. This behavour can be disabled by calling setFollowRedirects(false).

Version
Revision
664505
Since
4.0

Notice

The following notice applies to the original API on which this API is based, and to its documentation. The documentation of this API has been revised from the original.

/*
 * Copyright (C) 2006 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

Public Member Functions

 HttpGet (final String uri)
 
String getMethod ()
 Returns the HTTP method this request uses, such as GET, PUT, POST, or other.
 
- Public Member Functions inherited from HttpRequestBase
ProtocolVersion getProtocolVersion ()
 Returns the protocol version this message is compatible with.
 
URI getURI ()
 Returns the URI this request uses, such as http://example.org/path/to/file.
 
RequestLine getRequestLine ()
 Returns the request line of this request. More...
 
void setConnectionRequest (final ClientConnectionRequest connRequest) throws IOException
 Sets the com.good.gd.apache.http.conn.ClientConnectionRequest callback that can be used to abort a long-lived request for a connection. More...
 
void setReleaseTrigger (final ConnectionReleaseTrigger releaseTrigger) throws IOException
 Sets the com.good.gd.apache.http.conn.ConnectionReleaseTrigger callback that can be used to abort an active connection. More...
 
void abort ()
 Aborts this http request. More...
 
boolean isAborted ()
 Tests if the request execution has been aborted. More...
 
- Public Member Functions inherited from AbstractHttpMessage
boolean containsHeader (String name)
 Checks if a certain header is present in this message. More...
 
Header[] getHeaders (final String name)
 Returns all the headers with a specified name of this message. More...
 
Header getFirstHeader (final String name)
 Returns the first header with a specified name of this message. More...
 
Header getLastHeader (final String name)
 Returns the last header with a specified name of this message. More...
 
Header[] getAllHeaders ()
 Returns all the headers of this message. More...
 
void addHeader (final Header header)
 Adds a header to this message. More...
 
void addHeader (final String name, final String value)
 Adds a header to this message. More...
 
void setHeader (final Header header)
 Overwrites the first header with the same name. More...
 
void setHeader (final String name, final String value)
 Overwrites the first header with the same name. More...
 
void setHeaders (final Header[] headers)
 Overwrites all the headers in the message. More...
 
void removeHeader (final Header header)
 Removes a header from this message. More...
 
void removeHeaders (final String name)
 Removes all headers with a certain name from this message. More...
 
HeaderIterator headerIterator ()
 Returns an iterator of all the headers. More...
 
HeaderIterator headerIterator (String name)
 Returns an iterator of the headers with a given name. More...
 
HttpParams getParams ()
 Returns the parameters effective for this message as set by setParams(com.good.gd.apache.http.params.HttpParams).
 
void setParams (final HttpParams params)
 Provides parameters to be used for the processing of this message. More...
 

Constructor & Destructor Documentation

◆ HttpGet()

HttpGet ( final String  uri)
Exceptions
IllegalArgumentExceptionif the uri is invalid.