Package com.soffid.iam.model
Class UserAccountEntity
- java.lang.Object
-
- com.soffid.iam.model.UserAccountEntity
-
- Direct Known Subclasses:
UserAccountEntityImpl
public abstract class UserAccountEntity extends Object
Entity UserAccountEntity
-
-
Constructor Summary
Constructors Constructor Description UserAccountEntity()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidcustomCache()Operation customCachebooleanequals(Object object)Returnstrueif the argument is an UserAccountEntity instance and all identifiers for this entity equal the identifiers of the argument entity.AccountEntitygetAccount()Gets value for attribute accountBooleangetApproved()Gets value for attribute approvedLonggetId()Gets value for attribute idDategetUntilDate()Gets value for attribute untilDateUserEntitygetUser()Gets value for attribute userLonggetWorkflowId()Gets value for attribute workflowIdinthashCode()Returns a hash code based on this entity's identifiers.voidsetAccount(AccountEntity account)Sets value for attribute accountvoidsetApproved(Boolean approved)Sets value for attribute approvedvoidsetId(Long id)Sets value for attribute idvoidsetUntilDate(Date untilDate)Sets value for attribute untilDatevoidsetUser(UserEntity user)Sets value for attribute uservoidsetWorkflowId(Long workflowId)Sets value for attribute workflowId
-
-
-
Method Detail
-
getUser
public UserEntity getUser()
Gets value for attribute user
-
setUser
public void setUser(UserEntity user)
Sets value for attribute user
-
getAccount
public AccountEntity getAccount()
Gets value for attribute account
-
setAccount
public void setAccount(AccountEntity account)
Sets value for attribute account
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getUntilDate
public Date getUntilDate()
Gets value for attribute untilDate
-
setUntilDate
public void setUntilDate(Date untilDate)
Sets value for attribute untilDate
-
getWorkflowId
public Long getWorkflowId()
Gets value for attribute workflowId
-
setWorkflowId
public void setWorkflowId(Long workflowId)
Sets value for attribute workflowId
-
getApproved
public Boolean getApproved()
Gets value for attribute approved
-
setApproved
public void setApproved(Boolean approved)
Sets value for attribute approved
-
customCache
public abstract void customCache()
Operation customCache
-
equals
public boolean equals(Object object)
Returnstrueif the argument is an UserAccountEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-