These conditions are evaluate to True,
if Issue has an Activity confirmed
Or if Issue has an Inactivity confirmed
It is possible to define a threshold for each of proposed Activity Type.
When defined, the condition will be passed depending on activity Type evaluations.
The Condition configuration may be done in XML in Workflow descriptor as follow :
<condition type="class"> <arg name="class.name">com.atlassian.jira.workflow.condition.ActivityCondition</arg> <arg name="onXXXXX">2d</arg> </condition>
where the argument onXXXXX may be
<condition type="class"> <arg name="class.name">com.atlassian.jira.workflow.condition.ActivityCondition</arg> <arg name="onEdit">5d</arg> <arg name="onWorklog">2d</arg> </condition>Here Issue is assumed as Active, if none ot the mentionned delays are superseded !
<conditions type="OR"> <condition type="class"> <arg name="class.name">com.atlassian.jira.workflow.condition.ActivityCondition</arg> <arg name="onEdit">5d</arg> </condition> <condition type="class"> <arg name="class.name">com.atlassian.jira.workflow.condition.ActivityCondition</arg> <arg name="onWorklog">2d</arg> </condition> </conditions>Here Issue is assumed as Active one ot he mentionned delay is superseded !