Package com.soffid.iam.model
Class EmailDomainEntity
- java.lang.Object
-
- com.soffid.iam.model.EmailDomainEntity
-
- Direct Known Subclasses:
EmailDomainEntityImpl
public abstract class EmailDomainEntity extends Object
Entity EmailDomainEntity
-
-
Constructor Summary
Constructors Constructor Description EmailDomainEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an EmailDomainEntity instance and all identifiers for this entity equal the identifiers of the argument entity.String
getDescription()
Gets value for attribute descriptionLong
getId()
Gets value for attribute idCollection<EmailListEntity>
getMailLists()
Gets value for attribute mailListsString
getName()
Gets value for attribute nameString
getObsolete()
Gets value for attribute obsoleteTenantEntity
getTenant()
Gets value for attribute tenantCollection<UserEntity>
getUsers()
Gets value for attribute usersint
hashCode()
Returns a hash code based on this entity's identifiers.void
setDescription(String description)
Sets value for attribute descriptionvoid
setId(Long id)
Sets value for attribute idvoid
setMailLists(Collection<EmailListEntity> mailLists)
Sets value for attribute mailListsvoid
setName(String name)
Sets value for attribute namevoid
setObsolete(String obsolete)
Sets value for attribute obsoletevoid
setTenant(TenantEntity tenant)
Sets value for attribute tenantvoid
setUsers(Collection<UserEntity> users)
Sets value for attribute users
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getDescription
public String getDescription()
Gets value for attribute description
-
setDescription
public void setDescription(String description)
Sets value for attribute description
-
getName
public String getName()
Gets value for attribute name
-
setName
public void setName(String name)
Sets value for attribute name
-
getUsers
public Collection<UserEntity> getUsers()
Gets value for attribute users
-
setUsers
public void setUsers(Collection<UserEntity> users)
Sets value for attribute users
-
getMailLists
public Collection<EmailListEntity> getMailLists()
Gets value for attribute mailLists
-
setMailLists
public void setMailLists(Collection<EmailListEntity> mailLists)
Sets value for attribute mailLists
-
getObsolete
public String getObsolete()
Gets value for attribute obsolete
-
setObsolete
public void setObsolete(String obsolete)
Sets value for attribute obsolete
-
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 EmailDomainEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-