Package com.soffid.iam.model
Class TenantEntity
- java.lang.Object
-
- com.soffid.iam.model.TenantEntity
-
- Direct Known Subclasses:
TenantEntityImpl
public abstract class TenantEntity extends Object
Entity TenantEntity
-
-
Constructor Summary
Constructors Constructor Description TenantEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an TenantEntity instance and all identifiers for this entity equal the identifiers of the argument entity.String
getDescription()
Gets value for attribute descriptionCollection<TenantDisabledPermissionEntity>
getDisabledPermissions()
Gets value for attribute disabledPermissionsLong
getId()
Gets value for attribute idString
getName()
Gets value for attribute nameCollection<TenantServerEntity>
getServers()
Gets value for attribute serversint
hashCode()
Returns a hash code based on this entity's identifiers.boolean
isEnabled()
Gets value for attribute enabledvoid
setDescription(String description)
Sets value for attribute descriptionvoid
setDisabledPermissions(Collection<TenantDisabledPermissionEntity> disabledPermissions)
Sets value for attribute disabledPermissionsvoid
setEnabled(boolean enabled)
Sets value for attribute enabledvoid
setId(Long id)
Sets value for attribute idvoid
setName(String name)
Sets value for attribute namevoid
setServers(Collection<TenantServerEntity> servers)
Sets value for attribute servers
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getName
public String getName()
Gets value for attribute name
-
setName
public void setName(String name)
Sets value for attribute name
-
getDescription
public String getDescription()
Gets value for attribute description
-
setDescription
public void setDescription(String description)
Sets value for attribute description
-
isEnabled
public boolean isEnabled()
Gets value for attribute enabled
-
setEnabled
public void setEnabled(boolean enabled)
Sets value for attribute enabled
-
getDisabledPermissions
public Collection<TenantDisabledPermissionEntity> getDisabledPermissions()
Gets value for attribute disabledPermissions
-
setDisabledPermissions
public void setDisabledPermissions(Collection<TenantDisabledPermissionEntity> disabledPermissions)
Sets value for attribute disabledPermissions
-
getServers
public Collection<TenantServerEntity> getServers()
Gets value for attribute servers
-
setServers
public void setServers(Collection<TenantServerEntity> servers)
Sets value for attribute servers
-
equals
public boolean equals(Object object)
Returnstrue
if the argument is an TenantEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-