1 31 32 package org.apache.commons.httpclient.methods; 33 34 import org.apache.commons.httpclient.HttpMethodBase; 35 36 37 56 public class DeleteMethod 57 extends HttpMethodBase { 58 59 60 62 63 68 public DeleteMethod() { 69 } 70 71 72 79 public DeleteMethod(String uri) { 80 super(uri); 81 } 82 83 84 86 92 public String getName() { 93 return "DELETE"; 94 } 95 96 97 } 98 | Popular Tags |