Class UserWalletBean
- java.lang.Object
-
- com.h2tcoin.takamakachain.utils.simpleWallet.panels.support.UserWalletBean
-
- All Implemented Interfaces:
Serializable
,Comparable<UserWalletBean>
public class UserWalletBean extends Object implements Serializable, Comparable<UserWalletBean>
- Author:
- giovanni.antino@h2tcoin.com
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserWalletBean()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(UserWalletBean o)
boolean
equals(Object obj)
KeyContexts.WalletCypher
getCypher()
String
getEncryptedWallet()
String
getInternalName()
String
getWalletmnemonic()
char[]
getWalletmnemonicChars()
int
hashCode()
boolean
isValid()
void
setCypher(KeyContexts.WalletCypher cypher)
void
setEncryptedWallet(String encryptedWallet)
void
setInternalName(String internalName)
void
setValid(boolean valid)
void
setWalletmnemonic(String walletmnemonic)
void
setWalletmnemonicChars(char[] walletmnemonicChars)
-
-
-
Method Detail
-
getWalletmnemonicChars
public char[] getWalletmnemonicChars()
-
setWalletmnemonicChars
public void setWalletmnemonicChars(char[] walletmnemonicChars)
-
getInternalName
public String getInternalName()
-
setInternalName
public void setInternalName(String internalName)
-
getWalletmnemonic
public String getWalletmnemonic()
-
setWalletmnemonic
public void setWalletmnemonic(String walletmnemonic)
-
getEncryptedWallet
public String getEncryptedWallet()
-
setEncryptedWallet
public void setEncryptedWallet(String encryptedWallet)
-
getCypher
public KeyContexts.WalletCypher getCypher()
-
setCypher
public void setCypher(KeyContexts.WalletCypher cypher)
-
isValid
public boolean isValid()
-
setValid
public void setValid(boolean valid)
-
compareTo
public int compareTo(UserWalletBean o)
- Specified by:
compareTo
in interfaceComparable<UserWalletBean>
-
-