hr.com.vgv.verano.http.request.methods.Put Maven / Gradle / Ivy
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 Put extends Request
{
public Put(DictInput... inputs) {
this("", new IterableOf<>(inputs));
}
public Put(Iterable inputs) {
this("", inputs);
}
public Put(String path) {
this(path, new IterableOf<>());
}
public Put(String path, DictInput... inputs) {
this(path, new IterableOf<>(inputs));
}
public Put(String path, Iterable inputs)
{
super(path, "PUT", inputs);
}
}