package gov.nasa.jpl.mbee.mdk.http; import org.apache.http.annotation.NotThreadSafe; import org.apache.http.client.methods.HttpPost; import java.net.URI; @NotThreadSafe public class HttpDeleteWithBody extends HttpPost { public static final String METHOD_NAME = "DELETE"; public HttpDeleteWithBody() { super(); } public HttpDeleteWithBody(URI uri) { super(uri); } public HttpDeleteWithBody(String uri) { super(URI.create(uri)); } public String getMethod() { return "DELETE"; } }