Package com.soffid.iam.model
Class PasswordEntity
- java.lang.Object
-
- com.soffid.iam.model.PasswordEntity
-
- Direct Known Subclasses:
PasswordEntityImpl
public abstract class PasswordEntity extends Object
Entity PasswordEntity
-
-
Constructor Summary
Constructors Constructor Description PasswordEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an PasswordEntity instance and all identifiers for this entity equal the identifiers of the argument entity.String
getActive()
Gets value for attribute activeDate
getDate()
Gets value for attribute datePasswordDomainEntity
getDomain()
Gets value for attribute domainDate
getExpirationDate()
Gets value for attribute expirationDateInteger
getFails()
Gets value for attribute failsLong
getId()
Gets value for attribute idLong
getOrder()
Gets value for attribute orderString
getPassword()
Gets value for attribute passwordString
getPassword2()
Gets value for attribute password2Date
getUnlockDate()
Gets value for attribute unlockDateUserEntity
getUser()
Gets value for attribute userint
hashCode()
Returns a hash code based on this entity's identifiers.void
setActive(String active)
Sets value for attribute activevoid
setDate(Date date)
Sets value for attribute datevoid
setDomain(PasswordDomainEntity domain)
Sets value for attribute domainvoid
setExpirationDate(Date expirationDate)
Sets value for attribute expirationDatevoid
setFails(Integer fails)
Sets value for attribute failsvoid
setId(Long id)
Sets value for attribute idvoid
setOrder(Long order)
Sets value for attribute ordervoid
setPassword(String password)
Sets value for attribute passwordvoid
setPassword2(String password2)
Sets value for attribute password2void
setUnlockDate(Date unlockDate)
Sets value for attribute unlockDatevoid
setUser(UserEntity user)
Sets value for attribute user
-
-
-
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
-
getActive
public String getActive()
Gets value for attribute active
-
setActive
public void setActive(String active)
Sets value for attribute active
-
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
-
getDomain
public PasswordDomainEntity getDomain()
Gets value for attribute domain
-
setDomain
public void setDomain(PasswordDomainEntity domain)
Sets value for attribute domain
-
getUser
public UserEntity getUser()
Gets value for attribute user
-
setUser
public void setUser(UserEntity user)
Sets value for attribute user
-
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)
Returnstrue
if the argument is an PasswordEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-