Package com.soffid.iam.model
Class ServerRegistrationTokenEntity
- java.lang.Object
-
- com.soffid.iam.model.ServerRegistrationTokenEntity
-
- Direct Known Subclasses:
ServerRegistrationTokenEntityImpl
public abstract class ServerRegistrationTokenEntity extends Object
Entity ServerRegistrationTokenEntity
-
-
Constructor Summary
Constructors Constructor Description ServerRegistrationTokenEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an ServerRegistrationTokenEntity instance and all identifiers for this entity equal the identifiers of the argument entity.Date
getExpiration()
Gets value for attribute expirationLong
getId()
Gets value for attribute idint
getStep()
Gets value for attribute stepTenantEntity
getTenant()
Gets value for attribute tenantString
getToken()
Gets value for attribute tokenint
hashCode()
Returns a hash code based on this entity's identifiers.void
setExpiration(Date expiration)
Sets value for attribute expirationvoid
setId(Long id)
Sets value for attribute idvoid
setStep(int step)
Sets value for attribute stepvoid
setTenant(TenantEntity tenant)
Sets value for attribute tenantvoid
setToken(String token)
Sets value for attribute token
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getStep
public int getStep()
Gets value for attribute step
-
setStep
public void setStep(int step)
Sets value for attribute step
-
getToken
public String getToken()
Gets value for attribute token
-
setToken
public void setToken(String token)
Sets value for attribute token
-
getExpiration
public Date getExpiration()
Gets value for attribute expiration
-
setExpiration
public void setExpiration(Date expiration)
Sets value for attribute expiration
-
getTenant
public TenantEntity getTenant()
Gets value for attribute tenant
-
setTenant
public void setTenant(TenantEntity tenant)
Sets value for attribute tenant
-
equals
public boolean equals(Object object)
Returnstrue
if the argument is an ServerRegistrationTokenEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-