com.wrapper.spotify.HttpDeleteBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java client for Spotify's Web API
package com.wrapper.spotify;
import org.apache.http.client.methods.HttpEntityEnclosingRequestBase;
import java.net.URI;
public class HttpDeleteBody extends HttpEntityEnclosingRequestBase {
public static final String METHOD_NAME = "DELETE";
public HttpDeleteBody() {
}
public HttpDeleteBody(URI uri) {
this.setURI(uri);
}
public HttpDeleteBody(String uri) {
this.setURI(URI.create(uri));
}
public String getMethod() {
return "DELETE";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy