Package org.openiam.am.srvc.dto.jdbc
Class AbstractEntitlementsObject
- java.lang.Object
-
- org.openiam.am.srvc.dto.jdbc.AbstractEntitlementsObject
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InternalAuthorizationUser
,InternalEntitlementsObject
public abstract class AbstractEntitlementsObject extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractEntitlementsObject()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected void
add(Map<String,Set<InternalAuthorizationToken>> map, String membershipId, String entityId, String rightId, Date startDate, Date endDate, String description, String name, String rightName)
void
addGroupRight(String membershipId, String entityId, String rightId, Date startDate, Date endDate, String description, String name, String rightName)
void
addOrganizationRight(String membershipId, String entityId, String rightId, Date startDate, Date endDate, String description, String name, String rightName)
void
addResourceRight(String membershipId, String entityId, String rightId, Date startDate, Date endDate, String description, String name, String rightName)
void
addRoleRight(String membershipId, String entityId, String rightId, Date startDate, Date endDate, String description, String name, String rightName)
abstract Map<String,Set<InternalAuthorizationToken>>
getChildren()
abstract Map<String,Set<InternalAuthorizationToken>>
getParents()
-
-
-
Method Detail
-
getParents
public abstract Map<String,Set<InternalAuthorizationToken>> getParents()
-
getChildren
public abstract Map<String,Set<InternalAuthorizationToken>> getChildren()
-
addResourceRight
public void addResourceRight(String membershipId, String entityId, String rightId, Date startDate, Date endDate, String description, String name, String rightName)
-
addGroupRight
public void addGroupRight(String membershipId, String entityId, String rightId, Date startDate, Date endDate, String description, String name, String rightName)
-
addRoleRight
public void addRoleRight(String membershipId, String entityId, String rightId, Date startDate, Date endDate, String description, String name, String rightName)
-
addOrganizationRight
public void addOrganizationRight(String membershipId, String entityId, String rightId, Date startDate, Date endDate, String description, String name, String rightName)
-
-