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 booleanequals(Object object)Returnstrueif the argument is an ServerRegistrationTokenEntity instance and all identifiers for this entity equal the identifiers of the argument entity.DategetExpiration()Gets value for attribute expirationLonggetId()Gets value for attribute idintgetStep()Gets value for attribute stepTenantEntitygetTenant()Gets value for attribute tenantStringgetToken()Gets value for attribute tokeninthashCode()Returns a hash code based on this entity's identifiers.voidsetExpiration(Date expiration)Sets value for attribute expirationvoidsetId(Long id)Sets value for attribute idvoidsetStep(int step)Sets value for attribute stepvoidsetTenant(TenantEntity tenant)Sets value for attribute tenantvoidsetToken(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)
Returnstrueif the argument is an ServerRegistrationTokenEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-