| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| HttpClientFactory |
|
| 1.0;1 |
| 1 | package net.spy.digg; | |
| 2 | ||
| 3 | import org.apache.commons.httpclient.HttpClient; | |
| 4 | ||
| 5 | /** | |
| 6 | * Provide http clients to the Digg client. | |
| 7 | */ | |
| 8 | public interface HttpClientFactory { | |
| 9 | ||
| 10 | /** | |
| 11 | * Get an HttpClient instance for the Digg API to use. | |
| 12 | */ | |
| 13 | HttpClient getHttpClient(); | |
| 14 | } |