Package com.soffid.iam.model
Class PasswordManagerTokenEntity
- java.lang.Object
-
- com.soffid.iam.model.PasswordManagerTokenEntity
-
- Direct Known Subclasses:
PasswordManagerTokenEntityImpl
public abstract class PasswordManagerTokenEntity extends Object
Entity PasswordManagerTokenEntity
-
-
Constructor Summary
Constructors Constructor Description PasswordManagerTokenEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object object)Returnstrueif the argument is an PasswordManagerTokenEntity instance and all identifiers for this entity equal the identifiers of the argument entity.DategetCreated()Gets value for attribute createdDategetExpires()Gets value for attribute expiresLonggetId()Gets value for attribute idStringgetOldToken()Gets value for attribute oldTokenDategetRenew()Gets value for attribute renewStringgetToken()Gets value for attribute tokenUserEntitygetUser()Gets value for attribute userinthashCode()Returns a hash code based on this entity's identifiers.voidsetCreated(Date created)Sets value for attribute createdvoidsetExpires(Date expires)Sets value for attribute expiresvoidsetId(Long id)Sets value for attribute idvoidsetOldToken(String oldToken)Sets value for attribute oldTokenvoidsetRenew(Date renew)Sets value for attribute renewvoidsetToken(String token)Sets value for attribute tokenvoidsetUser(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
-
getUser
public UserEntity getUser()
Gets value for attribute user
-
setUser
public void setUser(UserEntity user)
Sets value for attribute user
-
getCreated
public Date getCreated()
Gets value for attribute created
-
setCreated
public void setCreated(Date created)
Sets value for attribute created
-
getExpires
public Date getExpires()
Gets value for attribute expires
-
setExpires
public void setExpires(Date expires)
Sets value for attribute expires
-
getRenew
public Date getRenew()
Gets value for attribute renew
-
setRenew
public void setRenew(Date renew)
Sets value for attribute renew
-
getToken
public String getToken()
Gets value for attribute token
-
setToken
public void setToken(String token)
Sets value for attribute token
-
getOldToken
public String getOldToken()
Gets value for attribute oldToken
-
setOldToken
public void setOldToken(String oldToken)
Sets value for attribute oldToken
-
equals
public boolean equals(Object object)
Returnstrueif the argument is an PasswordManagerTokenEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-