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

io.api.etherscan.executor.IHttpExecutor Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package io.api.etherscan.executor;

/**
 * Http Client interface
 *
 * @author GoodforGod
 * @since 31.10.2018
 */
public interface IHttpExecutor {

    /**
     * Performs a Http GET request
     *
     * @param url as string
     * @return result as string
     */
    String get(String url);

    /**
     * Performs a Http POST request
     *
     * @param url as string
     * @param data to post
     * @return result as string
     */
    String post(String url, String data);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy