Package com.comalatech.workflow.model
Interface Approval
- 
- All Superinterfaces:
- Activity,- Completion
 - All Known Subinterfaces:
- PartialApproval
 
 public interface Approval extends Completion Represents an approve or reject activity by a user on an approval.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()The name of the approval givenSignatureTypegetSignatureType()Returns the signature type used for this approval.booleanisApproved()Returns true if this is an approve activity, false if it is a reject activity.- 
Methods inherited from interface com.comalatech.workflow.model.ActivitygetActivityId, getComment, getDate, getPerformer, getUserName
 - 
Methods inherited from interface com.comalatech.workflow.model.CompletiongetOutcome
 
- 
 
- 
- 
- 
Method Detail- 
getNameString getName() The name of the approval given- Returns:
- the name of the approval
 
 - 
isApprovedboolean isApproved() Returns true if this is an approve activity, false if it is a reject activity.- Returns:
- Since:
- 1.11
 
 - 
getSignatureTypeSignatureType getSignatureType() Returns the signature type used for this approval. Can return null if the signature type is not known for old approvals.- Returns:
- SignatureType
 
 
- 
 
-