Interface WorkflowParticipantGroup


public interface WorkflowParticipantGroup
Provides methods to retrieve information for a participant group of an active workflow.
  • Method Summary

    Modifier and Type
    Method
    Description
    Retrieves a List of groups contained in this participant group.
    Retrieves the label of this participant group.
    Retrieves a List of lifecycle roles contained in this participant group.
    Retrieves the name of this participant group.
    Retrieves a list of application roles contained in this participant group.
    Retrieves a Set of user IDs contained in this participant group.
  • Method Details

    • getName

      String getName()
      Retrieves the name of this participant group.
      Returns:
      the name of this participant group
    • getLabel

      String getLabel()
      Retrieves the label of this participant group.
      Returns:
      the label of this participant group
    • getUsers

      Set<String> getUsers()
      Retrieves a Set of user IDs contained in this participant group.
      Returns:
      Set of user IDs in this participant group
    • getGroups

      List<Group> getGroups()
      Retrieves a List of groups contained in this participant group.
      Returns:
      List of groups in this participant group
    • getLifecycleRoles

      List<LifecycleRole> getLifecycleRoles()
      Retrieves a List of lifecycle roles contained in this participant group.
      Returns:
      List of roles in this participant group
    • getRoles

      List<Role> getRoles()
      Retrieves a list of application roles contained in this participant group.
      Returns:
      List of application roles in this participant group