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