Class DocumentActivityInvolvedUsers
- java.lang.Object
-
- com.comalatech.workflow.model.document.activity.DocumentActivityInvolvedUsers
-
public class DocumentActivityInvolvedUsers extends Object
Filter for activities where the specified users were involved. Can either be actors or participants, but not both at the same time.- Since:
- 7.0
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
DocumentActivityInvolvedUsers(List<String> actors, List<String> participants)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DocumentActivityInvolvedUsers
DocumentActivityInvolvedActors(List<String> actors)
Limits the actors of the activity to be one of the values in the list.static DocumentActivityInvolvedUsers
DocumentActivityInvolvedParticipants(List<String> participants)
Limits the participant of the activity to be one of the values in the list.List<String>
getActors()
List<String>
getParticipants()
-
-
-
Method Detail
-
DocumentActivityInvolvedActors
public static DocumentActivityInvolvedUsers DocumentActivityInvolvedActors(List<String> actors)
Limits the actors of the activity to be one of the values in the list.- Parameters:
actors
- list to filter activities for- Since:
- 7.0
-
DocumentActivityInvolvedParticipants
public static DocumentActivityInvolvedUsers DocumentActivityInvolvedParticipants(List<String> participants)
Limits the participant of the activity to be one of the values in the list.- Parameters:
participants
- list to filter activities for- Since:
- 7.0
-
-