Package org.exoplatform.wallet.entity
Class WalletEntity
- java.lang.Object
-
- org.exoplatform.wallet.entity.WalletEntity
-
- All Implemented Interfaces:
Serializable
@Entity(name="Wallet") public class WalletEntity extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WalletEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAddress()Collection<WalletBlockchainStateEntity>getBlockchainState()LonggetId()org.exoplatform.wallet.model.WalletInitializationStategetInitializationState()StringgetPassPhrase()WalletPrivateKeyEntitygetPrivateKey()org.exoplatform.wallet.model.WalletTypegetType()booleanisBackedUp()booleanisEnabled()voidsetAddress(String address)voidsetBackedUp(boolean isBackedUp)voidsetBlockchainState(Collection<WalletBlockchainStateEntity> blockchainState)voidsetEnabled(boolean isEnabled)voidsetId(Long id)voidsetInitializationState(org.exoplatform.wallet.model.WalletInitializationState initializationState)voidsetPassPhrase(String passPhrase)voidsetPrivateKey(WalletPrivateKeyEntity privateKey)voidsetType(org.exoplatform.wallet.model.WalletType type)
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getAddress
public String getAddress()
-
setAddress
public void setAddress(String address)
-
isEnabled
public boolean isEnabled()
-
setEnabled
public void setEnabled(boolean isEnabled)
-
isBackedUp
public boolean isBackedUp()
-
setBackedUp
public void setBackedUp(boolean isBackedUp)
-
getType
public org.exoplatform.wallet.model.WalletType getType()
-
setType
public void setType(org.exoplatform.wallet.model.WalletType type)
-
getPassPhrase
public String getPassPhrase()
-
setPassPhrase
public void setPassPhrase(String passPhrase)
-
getInitializationState
public org.exoplatform.wallet.model.WalletInitializationState getInitializationState()
-
setInitializationState
public void setInitializationState(org.exoplatform.wallet.model.WalletInitializationState initializationState)
-
getPrivateKey
public WalletPrivateKeyEntity getPrivateKey()
-
setPrivateKey
public void setPrivateKey(WalletPrivateKeyEntity privateKey)
-
getBlockchainState
public Collection<WalletBlockchainStateEntity> getBlockchainState()
-
setBlockchainState
public void setBlockchainState(Collection<WalletBlockchainStateEntity> blockchainState)
-
-