Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
B
C
E
F
G
H
N
O
P
R
S
B
BaseHttpClientRequester
- Class in
org.lastbamboo.common.http.client
Issues an HTTP request using HTTP client.
BaseHttpClientRequester()
- Constructor for class org.lastbamboo.common.http.client.
BaseHttpClientRequester
C
CommonsHttpClient
- Interface in
org.lastbamboo.common.http.client
The interface to the Apache Commons implementation of our HTTP client interface.
CommonsHttpClientImpl
- Class in
org.lastbamboo.common.http.client
An implementation of the Apache Commons HTTP client interface.
CommonsHttpClientImpl()
- Constructor for class org.lastbamboo.common.http.client.
CommonsHttpClientImpl
Constructs a new Apache Commons HTTP client.
CommonsHttpClientImpl(HttpConnectionManager)
- Constructor for class org.lastbamboo.common.http.client.
CommonsHttpClientImpl
Constructs a new Apache Commons HTTP client.
E
executeMethod(HttpMethod)
- Method in interface org.lastbamboo.common.http.client.
CommonsHttpClient
Executes a given HTTP method (from Commons HTTP).
executeMethod(HttpMethod)
- Method in class org.lastbamboo.common.http.client.
CommonsHttpClientImpl
Executes a given HTTP method (from Commons HTTP).
F
ForbiddenException
- Exception in
org.lastbamboo.common.http.client
Exception for a 403 Forbidden response.
ForbiddenException(String)
- Constructor for exception org.lastbamboo.common.http.client.
ForbiddenException
G
get(String, Collection<Pair<String, String>>)
- Method in class org.lastbamboo.common.http.client.
BaseHttpClientRequester
get(String, Map<String, String>)
- Method in class org.lastbamboo.common.http.client.
BaseHttpClientRequester
getHttpConnectionManager()
- Method in interface org.lastbamboo.common.http.client.
CommonsHttpClient
Returns this client's HTTP connection manager.
getHttpConnectionManager()
- Method in class org.lastbamboo.common.http.client.
CommonsHttpClientImpl
Returns this client's HTTP connection manager.
getParams()
- Method in interface org.lastbamboo.common.http.client.
CommonsHttpClient
Returns this client's parameters.
getParams()
- Method in class org.lastbamboo.common.http.client.
CommonsHttpClientImpl
Returns this client's parameters.
H
HttpClientGetRequester
- Class in
org.lastbamboo.common.http.client
Issues a post request using HTTP client.
HttpClientGetRequester()
- Constructor for class org.lastbamboo.common.http.client.
HttpClientGetRequester
HttpClientPostRequester
- Class in
org.lastbamboo.common.http.client
Issues a post request using HTTP client.
HttpClientPostRequester()
- Constructor for class org.lastbamboo.common.http.client.
HttpClientPostRequester
HttpClientRequester
- Interface in
org.lastbamboo.common.http.client
Interface for utility classes for issuing HTTP client requests.
HttpClientRunner
- Class in
org.lastbamboo.common.http.client
Performs an HTTP download using HttpClient.
HttpClientRunner(InputStreamHandler, CommonsHttpClient, HttpMethod, HttpListener)
- Constructor for class org.lastbamboo.common.http.client.
HttpClientRunner
Creates a new HTTP client
Runnable
with the specified collaborating classes.
HttpListener
- Interface in
org.lastbamboo.common.http.client
Interface for listening to download events, such as setting of the download content length, new data downloaded, etc.
N
NoContentRangeException
- Exception in
org.lastbamboo.common.http.client
Exception for when there's no content range header and we need one.
NoContentRangeException(String)
- Constructor for exception org.lastbamboo.common.http.client.
NoContentRangeException
Creates a new exception.
O
onBadHeader(String)
- Method in interface org.lastbamboo.common.http.client.
HttpListener
onConnect(long)
- Method in interface org.lastbamboo.common.http.client.
HttpListener
Called when a connection is made to the remote host.
onContentLength(long)
- Method in interface org.lastbamboo.common.http.client.
HttpListener
Called when the downloader has determined the content length of the resource.
onContentRange(LongRange)
- Method in interface org.lastbamboo.common.http.client.
HttpListener
onCouldNotConnect()
- Method in interface org.lastbamboo.common.http.client.
HttpListener
Called when we could not connect to the remote host.
onDownloadStarted()
- Method in interface org.lastbamboo.common.http.client.
HttpListener
Called when the download has started.
onFailure()
- Method in interface org.lastbamboo.common.http.client.
HttpListener
onHttpException(HttpException)
- Method in interface org.lastbamboo.common.http.client.
HttpListener
Called when there's an HTTP exception while connecting to the remote host.
onMessageBodyRead()
- Method in interface org.lastbamboo.common.http.client.
HttpListener
Called when the HTTP message body has been read.
onNoTwoHundredOk(int)
- Method in interface org.lastbamboo.common.http.client.
HttpListener
Called when we receive a response code other than 200 OK.
onPermanentFailure()
- Method in interface org.lastbamboo.common.http.client.
HttpListener
onStatusEvent(String)
- Method in interface org.lastbamboo.common.http.client.
HttpListener
Called when the status of the the download has changed.
org.lastbamboo.common.http.client
- package org.lastbamboo.common.http.client
P
post(String, Collection<Pair<String, String>>)
- Method in class org.lastbamboo.common.http.client.
BaseHttpClientRequester
post(String, Map<String, String>)
- Method in class org.lastbamboo.common.http.client.
BaseHttpClientRequester
R
request(String, Collection<Pair<String, String>>)
- Method in class org.lastbamboo.common.http.client.
HttpClientGetRequester
request(String, Map<String, String>)
- Method in class org.lastbamboo.common.http.client.
HttpClientGetRequester
request(String)
- Method in class org.lastbamboo.common.http.client.
HttpClientGetRequester
request(URL)
- Method in class org.lastbamboo.common.http.client.
HttpClientGetRequester
request(String, Collection<Pair<String, String>>)
- Method in class org.lastbamboo.common.http.client.
HttpClientPostRequester
request(String, Map<String, String>)
- Method in class org.lastbamboo.common.http.client.
HttpClientPostRequester
request(String)
- Method in class org.lastbamboo.common.http.client.
HttpClientPostRequester
request(URL)
- Method in class org.lastbamboo.common.http.client.
HttpClientPostRequester
request(String, Collection<Pair<String, String>>)
- Method in interface org.lastbamboo.common.http.client.
HttpClientRequester
Writes a request to the specified address.
request(String, Map<String, String>)
- Method in interface org.lastbamboo.common.http.client.
HttpClientRequester
Writes a request to the specified address.
request(String)
- Method in interface org.lastbamboo.common.http.client.
HttpClientRequester
Issue a request with no parameters.
request(URL)
- Method in interface org.lastbamboo.common.http.client.
HttpClientRequester
Issue a request with no parameters.
run()
- Method in class org.lastbamboo.common.http.client.
HttpClientRunner
Performs the download on a separate thread.
RuntimeHttpException
- Exception in
org.lastbamboo.common.http.client
A runtime wrapper around an
HttpException
.
RuntimeHttpException(HttpException)
- Constructor for exception org.lastbamboo.common.http.client.
RuntimeHttpException
Constructs a new runtime wrapper for an
HttpException
.
RuntimeHttpException(String, HttpException)
- Constructor for exception org.lastbamboo.common.http.client.
RuntimeHttpException
Constructs a new runtime wrapper for an
HttpException
.
RuntimeHttpException(String)
- Constructor for exception org.lastbamboo.common.http.client.
RuntimeHttpException
Constructs a new runtime wrapper for an
HttpException
.
S
ServiceUnavailableException
- Exception in
org.lastbamboo.common.http.client
Exception for 503 service unavailable errors.
ServiceUnavailableException(String)
- Constructor for exception org.lastbamboo.common.http.client.
ServiceUnavailableException
Creates a new exception.
B
C
E
F
G
H
N
O
P
R
S
Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
Copyright © 2013
LittleShoot
. All Rights Reserved.