Class TransactionBean
- java.lang.Object
-
- com.h2tcoin.takamakachain.transactions.TransactionBean
-
- All Implemented Interfaces:
Serializable
public class TransactionBean extends Object implements Serializable
- Author:
- giovanni.antino@h2tcoin.com
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TransactionBean()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getMessage()
String
getPublicKey()
String
getRandomSeed()
{@link https://en.wikipedia.org/wiki/Digital_Signature_Algorithm#Sensitivity}String
getSignature()
KeyContexts.WalletCypher
getWalletCypher()
int
hashCode()
void
setMessage(String message)
void
setPublicKey(String publicKey)
void
setRandomSeed(String randomSeed)
{@link https://en.wikipedia.org/wiki/Digital_Signature_Algorithm#Sensitivity}void
setSignature(String signature)
void
setWalletCypher(KeyContexts.WalletCypher walletCypher)
-
-
-
Method Detail
-
getRandomSeed
public String getRandomSeed()
{@link https://en.wikipedia.org/wiki/Digital_Signature_Algorithm#Sensitivity}
-
setRandomSeed
public void setRandomSeed(String randomSeed)
{@link https://en.wikipedia.org/wiki/Digital_Signature_Algorithm#Sensitivity}- Parameters:
randomSeed
-
-
getPublicKey
public String getPublicKey()
- Returns:
- the publicKey
-
getSignature
public String getSignature()
- Returns:
- the signature
-
getMessage
public String getMessage()
- Returns:
- the message
-
setPublicKey
public void setPublicKey(String publicKey)
- Parameters:
publicKey
- the publicKey to set
-
setSignature
public void setSignature(String signature)
- Parameters:
signature
- the signature to set
-
setMessage
public void setMessage(String message)
- Parameters:
message
- the message to set
-
getWalletCypher
public KeyContexts.WalletCypher getWalletCypher()
- Returns:
- the walletCypher
-
setWalletCypher
public void setWalletCypher(KeyContexts.WalletCypher walletCypher)
- Parameters:
walletCypher
- the walletCypher to set
-
-