cn.hyperchain.sdk.provider.HttpProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of litesdk Show documentation
Show all versions of litesdk Show documentation
A Java client tool for Hyperchain
package cn.hyperchain.sdk.provider;
import cn.hyperchain.sdk.account.Account;
import cn.hyperchain.sdk.exception.RequestException;
import cn.hyperchain.sdk.request.Request;
import java.util.Map;
/**
* HttpProvider interface.
* @author tomkk
* @version 0.0.1
*/
public interface HttpProvider {
String post(Request request) throws RequestException;
PStatus getStatus();
void setStatus(PStatus status);
String getUrl();
Account getAccount();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy