1 package org.columba.mail.url.cid; 17 18 import java.io.IOException ; 19 import java.io.InputStream ; 20 import java.net.URL ; 21 import java.net.URLConnection ; 22 23 24 class CidURLConnection extends URLConnection { 25 protected CidURLConnection(URL u) { 26 super(u); 27 } 28 29 public void connect() throws IOException { 30 connected = true; 33 } 34 35 public String getContentType() { 36 return null; 38 } 39 40 public String getContentEncoding() { 41 return null; 43 } 44 45 public InputStream getInputStream() throws IOException { 46 return null; 49 } 50 } 51 | Popular Tags |