Adding a setter

master
Nelson R. Perez 2017-01-05 11:35:03 -05:00
parent c26687e591
commit ef50a9f7ef
2 changed files with 15 additions and 0 deletions

View File

@ -48,6 +48,14 @@ public class UserAccount extends GrapheneObject implements ByteSerializable, Jso
return accountName;
}
/**
* Setter for the account name field.
* @param accountName: The account name.
*/
public void setAccountName(String accountName) {
this.accountName = accountName;
}
@Override
public byte[] toBytes() {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();

View File

@ -0,0 +1,7 @@
package de.bitsharesmunich.graphenej.api;
/**
* Created by nelson on 12/26/16.
*/
public class GetAccountHistory {
}