1 19 20 package com.maverick.http; 21 22 import java.io.IOException ; 23 24 28 public class HeadMethod extends GetMethod { 29 30 public HeadMethod(String uri) { 31 super("HEAD", uri); } 33 34 public HttpResponse execute(HttpRequest request, HttpConnection con) throws IOException { 35 36 request.performRequest(this, con); 37 return new HttpResponse(con, true); 38 } 39 } 40 | Popular Tags |