Sha256: aa5ea7456eadf05f10fdf7f421067e106ccbc7fa640f27d15345cbe6de24521e
Contents?: true
Size: 579 Bytes
Versions: 51
Compression:
Stored size: 579 Bytes
Contents
package org.manticore; import java.net.URI; import org.apache.http.client.methods.HttpEntityEnclosingRequestBase; public class HttpDeleteWithEntity extends HttpEntityEnclosingRequestBase { public final static String METHOD_NAME = "DELETE"; public HttpDeleteWithEntity() { super(); } public HttpDeleteWithEntity(URI url) { super(); setURI(url); } public HttpDeleteWithEntity(String url) { super(); setURI(URI.create(url)); } @Override public String getMethod() { return METHOD_NAME; } }
Version data entries
51 entries across 51 versions & 6 rubygems