Package com.groiss.wf
Interface Suspension
public interface Suspension
This interface allows to access the information when and why an activity
instance was in the suspension list.
-
Method Summary
Modifier and TypeMethodDescriptionthe activity instance that is suspendedThe description of the suspension.The end date of suspension, is null if still suspended.The start date of suspension.
-
Method Details
-
getActivityInstance
ActivityInstance getActivityInstance()the activity instance that is suspended -
getStartDate
Date getStartDate()The start date of suspension. -
getEndDate
Date getEndDate()The end date of suspension, is null if still suspended. -
getDescription
String getDescription()The description of the suspension.
-