Package com.comalatech.workflow.model
Interface StateApproval
- 
public interface StateApprovalRepresents an active approval on a page 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Approval>getApprovals()Returns a list of all approve and reject activities on this approval.List<String>getAssignees()The users assigned to this approval.StringgetName()The name of the approvalList<String>getPendingApprovers()Returns a list of users who are assigned but have not yet approved or rejected this approval. 
 - 
 
- 
- 
Method Detail
- 
getName
String getName()
The name of the approval 
- 
getAssignees
List<String> getAssignees()
The users assigned to this approval. The users could be predefined in the workflow or assigned after the state/approval was created.- Returns:
 - the current assignees
 
 
- 
getPendingApprovers
List<String> getPendingApprovers()
Returns a list of users who are assigned but have not yet approved or rejected this approval.- Returns:
 - the list of assigned users (usernames) that have not approved or rejected this approval
 - Since:
 - 1.11
 
 
 - 
 
 -