io.api.etherscan.executor.IHttpExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-etherscan-api Show documentation
Show all versions of java-etherscan-api Show documentation
Library is a wrapper for EtherScan API.
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