KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > alt > org > apache > commons > httpclient > HttpClientFactoryImpl


1 package alt.org.apache.commons.httpclient;
2
3 import org.apache.commons.httpclient.HttpClient;
4
5 public class HttpClientFactoryImpl implements HttpClientFactory{
6     public HttpClient createHttpClient() {
7         return new HttpClient();
8     }
9 }
10
Popular Tags