Package org.cyclos.entities.banking
Class BaseAccountLimitLog
- java.lang.Object
-
- org.cyclos.entities.SimpleEntity
-
- org.cyclos.entities.NetworkedEntity
-
- org.cyclos.entities.banking.BaseAccountLimitLog
-
- All Implemented Interfaces:
Cloneable,HasCurrency,HasNetwork,ProcessableForDataTranslation,IEntity
- Direct Known Subclasses:
AccountBalanceLimitLog,AccountPaymentAmountLimitLog
@MappedSuperclass public abstract class BaseAccountLimitLog extends NetworkedEntity implements HasCurrency
Base class for account payment and balance limits.
-
-
Constructor Summary
Constructors Constructor Description BaseAccountLimitLog()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AccountgetAccount()UsergetBy()CurrencygetCurrency()This method was created to solve the conversion to the corresponding VOStringgetDescription()DategetModifiedAt()NetworkgetNetwork()Returns the network this entity belongs tovoidsetAccount(Account account)voidsetBy(User by)voidsetDescription(String description)voidsetModifiedAt(Date modifiedAt)-
Methods inherited from class org.cyclos.entities.NetworkedEntity
isGlobal
-
Methods inherited from class org.cyclos.entities.SimpleEntity
clone, equals, getId, hashCode, id, ids, isPersistent, isTransient, setId, toShortString, toString, uniqueIds, uniqueIds
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.cyclos.entities.banking.HasCurrency
round, withCurrency
-
-
-
-
Method Detail
-
getAccount
public Account getAccount()
-
getBy
public User getBy()
-
getCurrency
public Currency getCurrency()
This method was created to solve the conversion to the corresponding VO- Specified by:
getCurrencyin interfaceHasCurrency
-
getDescription
public String getDescription()
-
getModifiedAt
public Date getModifiedAt()
-
getNetwork
public Network getNetwork()
Description copied from interface:HasNetworkReturns the network this entity belongs to- Specified by:
getNetworkin interfaceHasNetwork
-
setAccount
public void setAccount(Account account)
-
setBy
public void setBy(User by)
-
setDescription
public void setDescription(String description)
-
setModifiedAt
public void setModifiedAt(Date modifiedAt)
-
-