Package org.exoplatform.wallet.entity
Class WalletBlockchainStateEntity
- java.lang.Object
-
- org.exoplatform.wallet.entity.WalletBlockchainStateEntity
-
- All Implemented Interfaces:
Serializable
@Entity(name="WalletBlockchainState") public class WalletBlockchainStateEntity extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WalletBlockchainStateEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAdminLevel()StringgetContractAddress()doublegetEtherBalance()LonggetId()doublegetRewardBalance()doublegetTokenBalance()doublegetVestingBalance()WalletEntitygetWallet()booleanisApproved()booleanisInitialized()voidsetAdminLevel(int adminLevel)voidsetApproved(boolean isApproved)voidsetContractAddress(String contractAddress)voidsetEtherBalance(double etherBalance)voidsetId(Long id)voidsetInitialized(boolean isInitialized)voidsetRewardBalance(double rewardBalance)voidsetTokenBalance(double tokenBalance)voidsetVestingBalance(double vestingBalance)voidsetWallet(WalletEntity wallet)
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getContractAddress
public String getContractAddress()
-
setContractAddress
public void setContractAddress(String contractAddress)
-
getEtherBalance
public double getEtherBalance()
-
setEtherBalance
public void setEtherBalance(double etherBalance)
-
getTokenBalance
public double getTokenBalance()
-
setTokenBalance
public void setTokenBalance(double tokenBalance)
-
getRewardBalance
public double getRewardBalance()
-
setRewardBalance
public void setRewardBalance(double rewardBalance)
-
getVestingBalance
public double getVestingBalance()
-
setVestingBalance
public void setVestingBalance(double vestingBalance)
-
getAdminLevel
public int getAdminLevel()
-
setAdminLevel
public void setAdminLevel(int adminLevel)
-
isApproved
public boolean isApproved()
-
setApproved
public void setApproved(boolean isApproved)
-
isInitialized
public boolean isInitialized()
-
setInitialized
public void setInitialized(boolean isInitialized)
-
getWallet
public WalletEntity getWallet()
-
setWallet
public void setWallet(WalletEntity wallet)
-
-