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

com.teststeps.thekla4j.http.core.HttpRequest Maven / Gradle / Ivy

package com.teststeps.thekla4j.http.core;

import io.vavr.control.Either;

import java.io.File;

public interface HttpRequest {

    Either get();

    Either post();

  Either postFile(File file, String fieldName);

  Either patch();

    Either put();

    Either delete();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy