Package com.soffid.iam.model
Class ApplicationDomainEntity
- java.lang.Object
-
- com.soffid.iam.model.ApplicationDomainEntity
-
- Direct Known Subclasses:
ApplicationDomainEntityImpl
public abstract class ApplicationDomainEntity extends Object
Entity ApplicationDomainEntity
-
-
Constructor Summary
Constructors Constructor Description ApplicationDomainEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an ApplicationDomainEntity 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 idInformationSystemEntity
getInformationSystem()
Gets value for attribute informationSystemString
getName()
Gets value for attribute nameCollection<RoleEntity>
getRoles()
Gets value for attribute rolesCollection<DomainValueEntity>
getValues()
Gets value for attribute valuesint
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
setInformationSystem(InformationSystemEntity informationSystem)
Sets value for attribute informationSystemvoid
setName(String name)
Sets value for attribute namevoid
setRoles(Collection<RoleEntity> roles)
Sets value for attribute rolesvoid
setValues(Collection<DomainValueEntity> values)
Sets value for attribute values
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getValues
public Collection<DomainValueEntity> getValues()
Gets value for attribute values
-
setValues
public void setValues(Collection<DomainValueEntity> values)
Sets value for attribute values
-
getRoles
public Collection<RoleEntity> getRoles()
Gets value for attribute roles
-
setRoles
public void setRoles(Collection<RoleEntity> roles)
Sets value for attribute roles
-
getName
public String getName()
Gets value for attribute name
-
setName
public void setName(String name)
Sets value for attribute name
-
getInformationSystem
public InformationSystemEntity getInformationSystem()
Gets value for attribute informationSystem
-
setInformationSystem
public void setInformationSystem(InformationSystemEntity informationSystem)
Sets value for attribute informationSystem
-
getDescription
public String getDescription()
Gets value for attribute description
-
setDescription
public void setDescription(String description)
Sets value for attribute description
-
equals
public boolean equals(Object object)
Returnstrue
if the argument is an ApplicationDomainEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-