Interface BPMRole

All Superinterfaces:
BPMIdentity, BPMPrincipal, Principal
All Known Subinterfaces:
BPMAppRole, BPMGroup

public interface BPMRole extends BPMIdentity
BPMRole interface defines BPEL Process Manager Role
  • Method Details

    • getParticipants

      List getParticipants(boolean direct) throws BPMIdentityException
      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

      Set getGrantees(boolean direct) throws BPMIdentityException
      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

      Set getOwners(boolean direct) throws BPMIdentityException
      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

      boolean isOwneredBy(BPMUser user) throws BPMIdentityException
      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

      List<BPMIdentity> getManagers(boolean direct) throws BPMIdentityException
      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