Package com.h2tcoin.takamakachain.wallet
Class TransactionBox
- java.lang.Object
-
- com.h2tcoin.takamakachain.wallet.TransactionBox
-
- All Implemented Interfaces:
Serializable
,Comparable<TransactionBox>
public class TransactionBox extends Object implements Serializable, Comparable<TransactionBox>
- Author:
- giovanni.antino@h2tcoin.com
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TransactionBox()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(TransactionBox t)
Integer
epoch()
boolean
equals(Object obj)
String
from()
InternalTransactionBean
getItb()
String
getSingleInclusionTransactionHash()
TransactionBean
getTb()
String
getTransactionJson()
BigInteger
greenValue()
int
hashCode()
boolean
isValid()
String
messageInternalTB()
String
messageTB()
Date
notBeforeDate()
long
notBeforeUNIX()
String
publicKey()
String
randomSeed()
BigInteger
redValue()
protected void
setItb(InternalTransactionBean itb)
protected void
setSingleInclusionTransactionHash(String singleInclusionTransactionHash)
protected void
setTb(TransactionBean tb)
protected void
setTransactionJson(String transactionJson)
protected void
setValid(boolean valid)
String
signature()
String
sith()
Integer
slot()
String
to()
String
transactionHash()
KeyContexts.TransactionType
type()
KeyContexts.WalletCypher
walletCypher()
-
-
-
Method Detail
-
getSingleInclusionTransactionHash
public String getSingleInclusionTransactionHash()
-
setSingleInclusionTransactionHash
protected void setSingleInclusionTransactionHash(String singleInclusionTransactionHash)
-
getTransactionJson
public String getTransactionJson()
-
setTransactionJson
protected void setTransactionJson(String transactionJson)
-
getTb
public TransactionBean getTb()
-
setTb
protected void setTb(TransactionBean tb)
-
getItb
public InternalTransactionBean getItb()
-
setItb
protected void setItb(InternalTransactionBean itb)
-
isValid
public boolean isValid()
-
setValid
protected void setValid(boolean valid)
-
to
public String to()
-
from
public String from()
-
messageInternalTB
public String messageInternalTB()
-
notBeforeUNIX
public long notBeforeUNIX()
-
notBeforeDate
public Date notBeforeDate()
-
redValue
public BigInteger redValue()
-
greenValue
public BigInteger greenValue()
-
type
public KeyContexts.TransactionType type()
-
transactionHash
public String transactionHash()
-
epoch
public Integer epoch()
-
slot
public Integer slot()
-
publicKey
public String publicKey()
-
signature
public String signature()
-
messageTB
public String messageTB()
-
randomSeed
public String randomSeed()
-
walletCypher
public KeyContexts.WalletCypher walletCypher()
-
sith
public String sith()
-
compareTo
public int compareTo(TransactionBox t)
- Specified by:
compareTo
in interfaceComparable<TransactionBox>
-
-