1 17 18 package org.apache.avalon.repository; 19 20 import java.io.IOException ; 21 import java.net.URL ; 22 23 26 public class BlockURLConnection extends AbstractURLConnection 27 { 28 34 BlockURLConnection( URL url ) 35 throws IOException  36 { 37 super( url ); 38 } 39 40 44 public Object getContent() throws IOException  45 { 46 return super.getContent( "block" ); 47 } 48 } 49 | Popular Tags |