All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.horizon.apache.internal.HttpDeleteWithBody Maven / Gradle / Ivy

The newest version!
package com.hubspot.horizon.apache.internal;

import java.net.URI;
import org.apache.http.annotation.Contract;
import org.apache.http.client.methods.HttpDelete;
import org.apache.http.client.methods.HttpEntityEnclosingRequestBase;

@Contract(threading = org.apache.http.annotation.ThreadingBehavior.UNSAFE)
public class HttpDeleteWithBody extends HttpEntityEnclosingRequestBase {

  public String getMethod() {
    return HttpDelete.METHOD_NAME;
  }

  public HttpDeleteWithBody(final String uri) {
    super();
    setURI(URI.create(uri));
  }

  public HttpDeleteWithBody(final URI uri) {
    super();
    setURI(uri);
  }

  public HttpDeleteWithBody() {
    super();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy