Package com.soffid.iam.model
Class AccountPasswordEntity
- java.lang.Object
-
- com.soffid.iam.model.AccountPasswordEntity
-
- Direct Known Subclasses:
AccountPasswordEntityImpl
public abstract class AccountPasswordEntity extends Object
Entity AccountPasswordEntity
-
-
Constructor Summary
Constructors Constructor Description AccountPasswordEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object object)Returnstrueif the argument is an AccountPasswordEntity instance and all identifiers for this entity equal the identifiers of the argument entity.AccountEntitygetAccount()Gets value for attribute accountStringgetActive()Gets value for attribute activeDategetDate()Gets value for attribute dateDategetExpirationDate()Gets value for attribute expirationDateIntegergetFails()Gets value for attribute failsLonggetId()Gets value for attribute idLonggetOrder()Gets value for attribute orderStringgetPassword()Gets value for attribute passwordStringgetPassword2()Gets value for attribute password2DategetUnlockDate()Gets value for attribute unlockDateinthashCode()Returns a hash code based on this entity's identifiers.voidsetAccount(AccountEntity account)Sets value for attribute accountvoidsetActive(String active)Sets value for attribute activevoidsetDate(Date date)Sets value for attribute datevoidsetExpirationDate(Date expirationDate)Sets value for attribute expirationDatevoidsetFails(Integer fails)Sets value for attribute failsvoidsetId(Long id)Sets value for attribute idvoidsetOrder(Long order)Sets value for attribute ordervoidsetPassword(String password)Sets value for attribute passwordvoidsetPassword2(String password2)Sets value for attribute password2voidsetUnlockDate(Date unlockDate)Sets value for attribute unlockDate
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getPassword
public String getPassword()
Gets value for attribute password
-
setPassword
public void setPassword(String password)
Sets value for attribute password
-
getPassword2
public String getPassword2()
Gets value for attribute password2
-
setPassword2
public void setPassword2(String password2)
Sets value for attribute password2
-
getOrder
public Long getOrder()
Gets value for attribute order
-
setOrder
public void setOrder(Long order)
Sets value for attribute order
-
getDate
public Date getDate()
Gets value for attribute date
-
setDate
public void setDate(Date date)
Sets value for attribute date
-
getExpirationDate
public Date getExpirationDate()
Gets value for attribute expirationDate
-
setExpirationDate
public void setExpirationDate(Date expirationDate)
Sets value for attribute expirationDate
-
getActive
public String getActive()
Gets value for attribute active
-
setActive
public void setActive(String active)
Sets value for attribute active
-
getAccount
public AccountEntity getAccount()
Gets value for attribute account
-
setAccount
public void setAccount(AccountEntity account)
Sets value for attribute account
-
getFails
public Integer getFails()
Gets value for attribute fails
-
setFails
public void setFails(Integer fails)
Sets value for attribute fails
-
getUnlockDate
public Date getUnlockDate()
Gets value for attribute unlockDate
-
setUnlockDate
public void setUnlockDate(Date unlockDate)
Sets value for attribute unlockDate
-
equals
public boolean equals(Object object)
Returnstrueif the argument is an AccountPasswordEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-