Class AccountFeeLogData
- java.lang.Object
-
- org.cyclos.model.Bean
-
- org.cyclos.model.banking.accountfees.AccountFeeLogData
-
- All Implemented Interfaces:
Serializable
public class AccountFeeLogData extends Bean
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static BasicProperty<AccountFeeLogVO,AccountFeeLogData>ACCOUNT_FEE_LOGstatic BasicProperty<Boolean,AccountFeeLogData>CAN_RECHARGE_FAILEDstatic StringCLASS_NAMEstatic BasicProperty<CurrencyVO,AccountFeeLogData>CURRENCYstatic ListProperty<AccountFeeLogEventVO,AccountFeeLogData>EVENTSstatic BasicProperty<BigDecimal,AccountFeeLogData>TOTAL_CHARGED_AMOUNTstatic BasicProperty<Integer,AccountFeeLogData>TOTAL_USERSstatic MapProperty<UserAccountFeeStatus,Integer,AccountFeeLogData>USERS_BY_STATUS
-
Constructor Summary
Constructors Constructor Description AccountFeeLogData()AccountFeeLogData(Property<T,? super AccountFeeLogData> property, T value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringclassName()protected List<Property<?,?>>doGetProperties()AccountFeeLogVOgetAccountFeeLog()CurrencyVOgetCurrency()List<AccountFeeLogEventVO>getEvents()BigDecimalgetTotalChargedAmount()IntegergetTotalUsers()Map<UserAccountFeeStatus,Integer>getUsersByStatus()booleanisCanRechargeFailed()voidsetAccountFeeLog(AccountFeeLogVO accountFeeLog)voidsetCanRechargeFailed(boolean canRechargeFailed)voidsetCurrency(CurrencyVO currency)voidsetEvents(List<AccountFeeLogEventVO> events)voidsetTotalChargedAmount(BigDecimal totalChargedAmount)voidsetTotalUsers(Integer totalUsers)voidsetUsersByStatus(Map<UserAccountFeeStatus,Integer> usersByStatus)-
Methods inherited from class org.cyclos.model.Bean
addPropertyChangeListener, addPropertyChangeListener, attributeNames, backup, changes, clearAttributes, copyPropertiesTo, copyPropertiesTo, copyPropertiesTo, dataAccessor, firePropertyChange, get, getAttribute, initDataAccessor, properties, property, propertyMap, removeAttribute, removePropertyChangeListener, removePropertyChangeListener, restore, set, set, setAttribute, setWithPropagationId, values
-
-
-
-
Field Detail
-
CLASS_NAME
public static final String CLASS_NAME
-
ACCOUNT_FEE_LOG
public static final BasicProperty<AccountFeeLogVO,AccountFeeLogData> ACCOUNT_FEE_LOG
-
CAN_RECHARGE_FAILED
public static final BasicProperty<Boolean,AccountFeeLogData> CAN_RECHARGE_FAILED
-
CURRENCY
public static final BasicProperty<CurrencyVO,AccountFeeLogData> CURRENCY
-
EVENTS
public static final ListProperty<AccountFeeLogEventVO,AccountFeeLogData> EVENTS
-
TOTAL_CHARGED_AMOUNT
public static final BasicProperty<BigDecimal,AccountFeeLogData> TOTAL_CHARGED_AMOUNT
-
TOTAL_USERS
public static final BasicProperty<Integer,AccountFeeLogData> TOTAL_USERS
-
USERS_BY_STATUS
public static final MapProperty<UserAccountFeeStatus,Integer,AccountFeeLogData> USERS_BY_STATUS
-
-
Constructor Detail
-
AccountFeeLogData
public AccountFeeLogData()
-
AccountFeeLogData
public AccountFeeLogData(Property<T,? super AccountFeeLogData> property, T value)
-
-
Method Detail
-
doGetProperties
protected List<Property<?,?>> doGetProperties()
- Overrides:
doGetPropertiesin classBean
-
getAccountFeeLog
public AccountFeeLogVO getAccountFeeLog()
-
setAccountFeeLog
public void setAccountFeeLog(AccountFeeLogVO accountFeeLog)
-
isCanRechargeFailed
public boolean isCanRechargeFailed()
-
setCanRechargeFailed
public void setCanRechargeFailed(boolean canRechargeFailed)
-
getCurrency
public CurrencyVO getCurrency()
-
setCurrency
public void setCurrency(CurrencyVO currency)
-
getEvents
public List<AccountFeeLogEventVO> getEvents()
-
setEvents
public void setEvents(List<AccountFeeLogEventVO> events)
-
getTotalChargedAmount
public BigDecimal getTotalChargedAmount()
-
setTotalChargedAmount
public void setTotalChargedAmount(BigDecimal totalChargedAmount)
-
getTotalUsers
public Integer getTotalUsers()
-
setTotalUsers
public void setTotalUsers(Integer totalUsers)
-
getUsersByStatus
public Map<UserAccountFeeStatus,Integer> getUsersByStatus()
-
setUsersByStatus
public void setUsersByStatus(Map<UserAccountFeeStatus,Integer> usersByStatus)
-
-