Class WalletRewardPluginEntity
- java.lang.Object
-
- org.exoplatform.wallet.reward.entity.WalletRewardPluginEntity
-
- All Implemented Interfaces:
Serializable
@Entity(name="RewardPlugin") public class WalletRewardPluginEntity extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WalletRewardPluginEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetAmount()LonggetId()StringgetPluginId()doublegetPoints()WalletRewardEntitygetReward()booleanisPoolUsed()voidsetAmount(double amount)voidsetId(Long id)voidsetPluginId(String pluginId)voidsetPoints(double points)voidsetPoolUsed(boolean poolUsed)voidsetReward(WalletRewardEntity reward)
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getPluginId
public String getPluginId()
-
setPluginId
public void setPluginId(String pluginId)
-
isPoolUsed
public boolean isPoolUsed()
-
setPoolUsed
public void setPoolUsed(boolean poolUsed)
-
getPoints
public double getPoints()
-
setPoints
public void setPoints(double points)
-
getAmount
public double getAmount()
-
setAmount
public void setAmount(double amount)
-
getReward
public WalletRewardEntity getReward()
-
setReward
public void setReward(WalletRewardEntity reward)
-
-