Package com.soffid.iam.model
Class SamlRequestEntity
- java.lang.Object
-
- com.soffid.iam.model.SamlRequestEntity
-
- Direct Known Subclasses:
SamlRequestEntityImpl
public abstract class SamlRequestEntity extends Object
Entity SamlRequestEntity
-
-
Constructor Summary
Constructors Constructor Description SamlRequestEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an SamlRequestEntity instance and all identifiers for this entity equal the identifiers of the argument entity.Date
getDate()
Gets value for attribute dateDate
getExpirationDate()
Gets value for attribute expirationDateString
getExternalId()
Gets value for attribute externalIdString
getHostName()
Gets value for attribute hostNameLong
getId()
Gets value for attribute idString
getKey()
Gets value for attribute keyTenantEntity
getTenant()
Gets value for attribute tenantString
getUser()
Gets value for attribute userint
hashCode()
Returns a hash code based on this entity's identifiers.boolean
isFinished()
Gets value for attribute finishedvoid
setDate(Date date)
Sets value for attribute datevoid
setExpirationDate(Date expirationDate)
Sets value for attribute expirationDatevoid
setExternalId(String externalId)
Sets value for attribute externalIdvoid
setFinished(boolean finished)
Sets value for attribute finishedvoid
setHostName(String hostName)
Sets value for attribute hostNamevoid
setId(Long id)
Sets value for attribute idvoid
setKey(String key)
Sets value for attribute keyvoid
setTenant(TenantEntity tenant)
Sets value for attribute tenantvoid
setUser(String 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
-
getExternalId
public String getExternalId()
Gets value for attribute externalId
-
setExternalId
public void setExternalId(String externalId)
Sets value for attribute externalId
-
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
-
isFinished
public boolean isFinished()
Gets value for attribute finished
-
setFinished
public void setFinished(boolean finished)
Sets value for attribute finished
-
getHostName
public String getHostName()
Gets value for attribute hostName
-
setHostName
public void setHostName(String hostName)
Sets value for attribute hostName
-
getUser
public String getUser()
Gets value for attribute user
-
setUser
public void setUser(String user)
Sets value for attribute user
-
getKey
public String getKey()
Gets value for attribute key
-
setKey
public void setKey(String key)
Sets value for attribute key
-
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 SamlRequestEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-