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 booleanequals(Object object)Returnstrueif the argument is an SamlAssertionEntity instance and all identifiers for this entity equal the identifiers of the argument entity.DategetDate()Gets value for attribute dateStringgetExternalId()Gets value for attribute externalIdLonggetId()Gets value for attribute idStringgetIssuer()Gets value for attribute issuerTenantEntitygetTenant()Gets value for attribute tenantinthashCode()Returns a hash code based on this entity's identifiers.voidsetDate(Date date)Sets value for attribute datevoidsetExternalId(String externalId)Sets value for attribute externalIdvoidsetId(Long id)Sets value for attribute idvoidsetIssuer(String issuer)Sets value for attribute issuervoidsetTenant(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)
Returnstrueif the argument is an SamlAssertionEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-