Adding a setter
This commit is contained in:
parent
c26687e591
commit
ef50a9f7ef
2 changed files with 15 additions and 0 deletions
|
@ -48,6 +48,14 @@ public class UserAccount extends GrapheneObject implements ByteSerializable, Jso
|
||||||
return accountName;
|
return accountName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setter for the account name field.
|
||||||
|
* @param accountName: The account name.
|
||||||
|
*/
|
||||||
|
public void setAccountName(String accountName) {
|
||||||
|
this.accountName = accountName;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public byte[] toBytes() {
|
public byte[] toBytes() {
|
||||||
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
package de.bitsharesmunich.graphenej.api;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by nelson on 12/26/16.
|
||||||
|
*/
|
||||||
|
public class GetAccountHistory {
|
||||||
|
}
|
Loading…
Reference in a new issue