org.brewchain.sdk.model.ChainRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cwvj Show documentation
Show all versions of cwvj Show documentation
Java sdk for Dapps interact with cwv blockchain node
The newest version!
package org.brewchain.sdk.model;
public class ChainRequest {
private String domain;
private String url;
private String body;
public ChainRequest(String url, String body){
this.url = url;
this.body = body;
}
public String getUrl(){
return url;
}
public void setUrl(String _url) { this.url = _url;}
public String getBody(){
return body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy