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

hr.com.vgv.verano.http.request.methods.Delete Maven / Gradle / Ivy

There is a newer version: 0.41
Show newest version
package hr.com.vgv.verano.http.request.methods;

import org.cactoos.iterable.IterableOf;

import hr.com.vgv.verano.http.DictInput;
import hr.com.vgv.verano.http.request.Request;

public class Delete extends Request
{
    public Delete(DictInput... inputs) {
        this("", new IterableOf<>(inputs));
    }

    public Delete(Iterable inputs) {
        this("", inputs);
    }

    public Delete(String path) {
        this(path, new IterableOf<>());
    }

    public Delete(String path, DictInput... inputs) {
        this(path, new IterableOf<>(inputs));
    }

    public Delete(String path, Iterable inputs)
    {
        super(path, "DELETE", inputs);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy