Package com.soffid.iam.api
Class AccountHistory
- java.lang.Object
-
- com.soffid.iam.api.AccountHistory
-
- All Implemented Interfaces:
Serializable
public class AccountHistory extends Object implements Serializable
ValueObject AccountHistory- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AccountHistory()
AccountHistory(AccountHistory otherBean)
AccountHistory(Account account, AccountAccessLevelEnum level, Date start, Date end)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Account
getAccount()
Gets value for attribute accountDate
getEnd()
Gets value for attribute endAccountAccessLevelEnum
getLevel()
Gets value for attribute levelDate
getStart()
Gets value for attribute startvoid
setAccount(Account account)
Sets value for attribute accountvoid
setEnd(Date end)
Sets value for attribute endvoid
setLevel(AccountAccessLevelEnum level)
Sets value for attribute levelvoid
setStart(Date start)
Sets value for attribute startstatic AccountHistory
toAccountHistory(AccountHistory vo)
Creates a AccountHistory value object based on a AccountHistory object.static void
toAccountHistory(AccountHistory source, AccountHistory target)
Updates a AccountHistory value object based on a AccountHistory object.static AccountHistory[]
toAccountHistoryArray(AccountHistory[] source)
Creates a AccountHistory array on a AccountHistory array.static AsyncList<AccountHistory>
toAccountHistoryAsyncList(AsyncList<AccountHistory> source)
Creates a AccountHistory asynclist on a AccountHistory collection.static PagedResult<AccountHistory>
toAccountHistoryList(PagedResult<AccountHistory> source)
Creates a AccountHistory pagedResult on a AccountHistory collection.static List<AccountHistory>
toAccountHistoryList(Collection<AccountHistory> source)
Creates a AccountHistory list on a AccountHistory collection.String
toString()
Returns a string representation of the value object.
-
-
-
Constructor Detail
-
AccountHistory
public AccountHistory()
-
AccountHistory
public AccountHistory(Account account, AccountAccessLevelEnum level, Date start, Date end)
-
AccountHistory
public AccountHistory(AccountHistory otherBean)
-
-
Method Detail
-
getAccount
public Account getAccount()
Gets value for attribute account
-
setAccount
public void setAccount(Account account)
Sets value for attribute account
-
getLevel
public AccountAccessLevelEnum getLevel()
Gets value for attribute level
-
setLevel
public void setLevel(AccountAccessLevelEnum level)
Sets value for attribute level
-
getStart
public Date getStart()
Gets value for attribute start
-
setStart
public void setStart(Date start)
Sets value for attribute start
-
getEnd
public Date getEnd()
Gets value for attribute end
-
setEnd
public void setEnd(Date end)
Sets value for attribute end
-
toString
public String toString()
Returns a string representation of the value object.
-
toAccountHistory
public static AccountHistory toAccountHistory(AccountHistory vo)
Creates a AccountHistory value object based on a AccountHistory object.
-
toAccountHistoryList
public static List<AccountHistory> toAccountHistoryList(Collection<AccountHistory> source)
Creates a AccountHistory list on a AccountHistory collection.
-
toAccountHistoryList
public static PagedResult<AccountHistory> toAccountHistoryList(PagedResult<AccountHistory> source)
Creates a AccountHistory pagedResult on a AccountHistory collection.
-
toAccountHistoryAsyncList
public static AsyncList<AccountHistory> toAccountHistoryAsyncList(AsyncList<AccountHistory> source)
Creates a AccountHistory asynclist on a AccountHistory collection.
-
toAccountHistoryArray
public static AccountHistory[] toAccountHistoryArray(AccountHistory[] source)
Creates a AccountHistory array on a AccountHistory array.
-
toAccountHistory
public static void toAccountHistory(AccountHistory source, AccountHistory target)
Updates a AccountHistory value object based on a AccountHistory object.
-
-