KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > lobobrowser > util > GenericURLConnection


1 /*
2     GNU LESSER GENERAL PUBLIC LICENSE
3     Copyright (C) 2006 The Lobo Project
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Lesser General Public
7     License as published by the Free Software Foundation; either
8     version 2.1 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13     Lesser General Public License for more details.
14
15     You should have received a copy of the GNU Lesser General Public
16     License along with this library; if not, write to the Free Software
17     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19     Contact info: xamjadmin@users.sourceforge.net
20 */

21 /*
22  * Created on Jun 22, 2005
23  */

24 package org.lobobrowser.util;
25
26 import java.io.IOException JavaDoc;
27 import java.io.InputStream JavaDoc;
28 import java.net.URLConnection JavaDoc;
29 import java.util.Collections JavaDoc;
30 import java.util.Map JavaDoc;
31
32 /**
33  * @author J. H. S.
34  */

35 public class GenericURLConnection extends URLConnection JavaDoc {
36     private final java.io.InputStream JavaDoc inputStream;
37     
38     /**
39      *
40      */

41     public GenericURLConnection(java.net.URL JavaDoc url, InputStream JavaDoc in) {
42         super(url);
43         this.inputStream = in;
44     }
45
46     /* (non-Javadoc)
47      * @see java.net.URLConnection#connect()
48      */

49     public void connect() throws IOException JavaDoc {
50     }
51
52     
53     /* (non-Javadoc)
54      * @see java.net.URLConnection#getInputStream()
55      */

56     public InputStream JavaDoc getInputStream() throws IOException JavaDoc {
57         return this.inputStream;
58     }
59     
60     /* (non-Javadoc)
61      * @see java.net.URLConnection#getHeaderField(int)
62      */

63     public String JavaDoc getHeaderField(int n) {
64         return null;
65     }
66     
67     /* (non-Javadoc)
68      * @see java.net.URLConnection#getHeaderField(java.lang.String)
69      */

70     public String JavaDoc getHeaderField(String JavaDoc name) {
71         return null;
72     }
73     
74     /* (non-Javadoc)
75      * @see java.net.URLConnection#getHeaderFieldKey(int)
76      */

77     public String JavaDoc getHeaderFieldKey(int n) {
78         return null;
79     }
80
81     /* (non-Javadoc)
82      * @see java.net.URLConnection#getHeaderFields()
83      */

84     public Map JavaDoc getHeaderFields() {
85         return Collections.EMPTY_MAP;
86     }
87 }
88
89
Popular Tags