Package com.soffid.iam.model
Class SamlAssertionEntity
- java.lang.Object
-
- com.soffid.iam.model.SamlAssertionEntity
-
- Direct Known Subclasses:
SamlAssertionEntityImpl
public abstract class SamlAssertionEntity extends Object
Entity SamlAssertionEntity
-
-
Constructor Summary
Constructors Constructor Description SamlAssertionEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an SamlAssertionEntity instance and all identifiers for this entity equal the identifiers of the argument entity.Date
getDate()
Gets value for attribute dateString
getExternalId()
Gets value for attribute externalIdLong
getId()
Gets value for attribute idString
getIssuer()
Gets value for attribute issuerTenantEntity
getTenant()
Gets value for attribute tenantint
hashCode()
Returns a hash code based on this entity's identifiers.void
setDate(Date date)
Sets value for attribute datevoid
setExternalId(String externalId)
Sets value for attribute externalIdvoid
setId(Long id)
Sets value for attribute idvoid
setIssuer(String issuer)
Sets value for attribute issuervoid
setTenant(TenantEntity tenant)
Sets value for attribute tenant
-
-
-
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
-
getIssuer
public String getIssuer()
Gets value for attribute issuer
-
setIssuer
public void setIssuer(String issuer)
Sets value for attribute issuer
-
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 SamlAssertionEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-