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

com.wrapper.spotify.HttpDeleteBody Maven / Gradle / Ivy

There is a newer version: 9.0.0-RC1
Show newest version
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