Package oracle.tip.pc.services.identity
Interface BPMRole
- All Superinterfaces:
BPMIdentity
,BPMPrincipal
,Principal
- All Known Subinterfaces:
BPMAppRole
,BPMGroup
BPMRole
interface defines BPEL Process Manager Role-
Method Summary
Modifier and TypeMethodDescriptiongetGrantees
(boolean direct) Gets all participants, the grantees either roles or usersgetManagers
(boolean direct) Gets a List of managers for the group.getOwners
(boolean direct) Gets role ownersgetParticipants
(boolean direct) Gets user participantsboolean
isOwneredBy
(BPMUser user) Check whether the role owned by BPMUserMethods inherited from interface oracle.tip.pc.services.identity.BPMIdentity
getActions, getAppRoles, getAppRoles, getEmail, getGrantedRoles, getGrantedRoles, getGroups, getIdentityType, getManagedRoles, getOwnedRoles, getRoles, isInAppRole, isInGroup, isInRole, isInRole, isOwner
Methods inherited from interface oracle.tip.pc.services.identity.BPMPrincipal
getAttribute, getAttributes, getDescription, getDisplayName, getDisplayName, getFullName, getGuid, getRealmName, getUniqueName, toNode
-
Method Details
-
getParticipants
Gets user participants- Parameters:
direct
- a boolean flag. If true method returns direct participans, else direct and indirect.- Returns:
- List of user objects, a List of BPMUser objects
- Throws:
BPMIdentityException
- if error occurs
-
getGrantees
Gets all participants, the grantees either roles or users- Parameters:
direct
- a boolean flag, if true return direct grantee, else indirect and direct- Returns:
- List of all participants, List of a BPMIdentity objects
- Throws:
BPMIdentityException
- if error occurs
-
getOwners
Gets role owners- Parameters:
direct
- a boolean flag. If true, returns direct onwers, else all onwers- Returns:
- List of BPMPrincipal objects who ownes the role
- Throws:
BPMIdentityException
- if error occurs
-
isOwneredBy
Check whether the role owned by BPMUser- Parameters:
user
- a BPMUser object- Returns:
- boolean true, if user owns the role, else false
- Throws:
BPMIdentityException
- if error occurs
-
getManagers
Gets a List of managers for the group.- Parameters:
direct
- a boolean flag. If true, returns direct managers, else all managers- Returns:
- List of BPMIdentity objects who are the managers of thi role
- Throws:
BPMIdentityException
- if error occurs
-