Package com.soffid.iam.model
Class RoleGroupEntity
- java.lang.Object
-
- com.soffid.iam.model.RoleGroupEntity
-
- Direct Known Subclasses:
RoleGroupEntityImpl
public abstract class RoleGroupEntity extends Object
Entity RoleGroupEntity
-
-
Constructor Summary
Constructors Constructor Description RoleGroupEntity()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanequals(Object object)Returnstrueif the argument is an RoleGroupEntity instance and all identifiers for this entity equal the identifiers of the argument entity.InformationSystemEntitygetGrantedApplicationDomain()Gets value for attribute grantedApplicationDomainDomainValueEntitygetGrantedDomainValue()Gets value for attribute grantedDomainValueGroupEntitygetGrantedGroupDomain()Gets value for attribute grantedGroupDomainRoleEntitygetGrantedRole()Gets value for attribute grantedRoleGroupEntitygetGroup()Gets value for attribute groupLonggetId()Gets value for attribute idinthashCode()Returns a hash code based on this entity's identifiers.abstract booleanisAllowed(String permission)Operation isAllowed Returns true if the permission on this object is grantedvoidsetGrantedApplicationDomain(InformationSystemEntity grantedApplicationDomain)Sets value for attribute grantedApplicationDomainvoidsetGrantedDomainValue(DomainValueEntity grantedDomainValue)Sets value for attribute grantedDomainValuevoidsetGrantedGroupDomain(GroupEntity grantedGroupDomain)Sets value for attribute grantedGroupDomainvoidsetGrantedRole(RoleEntity grantedRole)Sets value for attribute grantedRolevoidsetGroup(GroupEntity group)Sets value for attribute groupvoidsetId(Long id)Sets value for attribute idabstract StringtoString()Operation toString
-
-
-
Method Detail
-
getGroup
public GroupEntity getGroup()
Gets value for attribute group
-
setGroup
public void setGroup(GroupEntity group)
Sets value for attribute group
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getGrantedRole
public RoleEntity getGrantedRole()
Gets value for attribute grantedRole
-
setGrantedRole
public void setGrantedRole(RoleEntity grantedRole)
Sets value for attribute grantedRole
-
getGrantedApplicationDomain
public InformationSystemEntity getGrantedApplicationDomain()
Gets value for attribute grantedApplicationDomain
-
setGrantedApplicationDomain
public void setGrantedApplicationDomain(InformationSystemEntity grantedApplicationDomain)
Sets value for attribute grantedApplicationDomain
-
getGrantedGroupDomain
public GroupEntity getGrantedGroupDomain()
Gets value for attribute grantedGroupDomain
-
setGrantedGroupDomain
public void setGrantedGroupDomain(GroupEntity grantedGroupDomain)
Sets value for attribute grantedGroupDomain
-
getGrantedDomainValue
public DomainValueEntity getGrantedDomainValue()
Gets value for attribute grantedDomainValue
-
setGrantedDomainValue
public void setGrantedDomainValue(DomainValueEntity grantedDomainValue)
Sets value for attribute grantedDomainValue
-
isAllowed
public abstract boolean isAllowed(String permission)
Operation isAllowed Returns true if the permission on this object is granted- Parameters:
permission-- Returns:
-
toString
public abstract String toString()
Operation toString
-
equals
public boolean equals(Object object)
Returnstrueif the argument is an RoleGroupEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-