Package com.soffid.iam.model
Class AccountSnapshotEntity
- java.lang.Object
-
- com.soffid.iam.model.AccountSnapshotEntity
-
- Direct Known Subclasses:
AccountSnapshotEntityImpl
public abstract class AccountSnapshotEntity extends Object
Entity AccountSnapshotEntity
-
-
Constructor Summary
Constructors Constructor Description AccountSnapshotEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an AccountSnapshotEntity instance and all identifiers for this entity equal the identifiers of the argument entity.Collection<AccountEntity>
getAccounts()
Gets value for attribute accountsbyte[]
getData()
Gets value for attribute dataLong
getId()
Gets value for attribute idint
hashCode()
Returns a hash code based on this entity's identifiers.void
setAccounts(Collection<AccountEntity> accounts)
Sets value for attribute accountsvoid
setData(byte[] data)
Sets value for attribute datavoid
setId(Long id)
Sets value for attribute id
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getData
public byte[] getData()
Gets value for attribute data
-
setData
public void setData(byte[] data)
Sets value for attribute data
-
getAccounts
public Collection<AccountEntity> getAccounts()
Gets value for attribute accounts
-
setAccounts
public void setAccounts(Collection<AccountEntity> accounts)
Sets value for attribute accounts
-
equals
public boolean equals(Object object)
Returnstrue
if the argument is an AccountSnapshotEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-