Package com.veeva.vault.sdk.api.workflow
Interface WorkflowParticipantGroup
public interface WorkflowParticipantGroup
Provides methods to retrieve information for a participant group of an active workflow.
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves a List of groups contained in this participant group.getLabel()
Retrieves the label of this participant group.Retrieves a List of lifecycle roles contained in this participant group.getName()
Retrieves the name of this participant group.getRoles()
Retrieves a list of application roles contained in this participant group.getUsers()
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
Retrieves a Set of user IDs contained in this participant group.- Returns:
- Set of user IDs in this participant 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
Retrieves a list of application roles contained in this participant group.- Returns:
- List of application roles in this participant group
-