Class ApplicationKVStorage
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.ApplicationKVStorage
-
public class ApplicationKVStorage extends PathResponse
An application's global/local/box state.
-
-
Field Summary
Fields Modifier and Type Field Description Address
account
List<AvmKeyValue>
kvs
Key-Value pairs representing application states.
-
Constructor Summary
Constructors Constructor Description ApplicationKVStorage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
account()
void
account(String account)
The address of the account associated with the local state.boolean
equals(Object o)
-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
account
public Address account
-
kvs
public List<AvmKeyValue> kvs
Key-Value pairs representing application states.
-
-
Method Detail
-
account
public void account(String account) throws NoSuchAlgorithmException
The address of the account associated with the local state.- Throws:
NoSuchAlgorithmException
-
account
public String account() throws NoSuchAlgorithmException
- Throws:
NoSuchAlgorithmException
-
-