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 booleanequals(Object object)Returnstrueif the argument is an SamlRequestEntity instance and all identifiers for this entity equal the identifiers of the argument entity.DategetDate()Gets value for attribute dateDategetExpirationDate()Gets value for attribute expirationDateStringgetExternalId()Gets value for attribute externalIdStringgetHostName()Gets value for attribute hostNameLonggetId()Gets value for attribute idStringgetKey()Gets value for attribute keyTenantEntitygetTenant()Gets value for attribute tenantStringgetUser()Gets value for attribute userinthashCode()Returns a hash code based on this entity's identifiers.booleanisFinished()Gets value for attribute finishedvoidsetDate(Date date)Sets value for attribute datevoidsetExpirationDate(Date expirationDate)Sets value for attribute expirationDatevoidsetExternalId(String externalId)Sets value for attribute externalIdvoidsetFinished(boolean finished)Sets value for attribute finishedvoidsetHostName(String hostName)Sets value for attribute hostNamevoidsetId(Long id)Sets value for attribute idvoidsetKey(String key)Sets value for attribute keyvoidsetTenant(TenantEntity tenant)Sets value for attribute tenantvoidsetUser(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)
Returnstrueif the argument is an SamlRequestEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-