Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

You need to set up your project and environment go be able to handle Comala Document Management events.

You can have your app to listen to workflow related events using Confluence's Event Listeners.

Events

Event

Description

ApprovalApprovedEvent

Fired when the page of blogpost is approved.

Status
colourBlue
titlev7.0+

Info

Replaces ContentApprovedEvent in Comala Document Management v7.0+ releases.

StateChangeEvent

Fired when the state of page or blog post is changed

StateExpireEvent

Fired when the state of a page of blog post has expired

ApprovalAssignedEvent

Fired when the approval is assigned

ApprovalUnassignedEvent

Fired when the approval is unassigned

ContentApproveEvent

Fired when the page or blog post is approved

Info

Removed from Comala Document Management v7.0+ releases. Use ApprovalApprovedEvent instead in v7.0+.

ContentRejectEvent

Fired when the page or blog post is rejected

TaskCreateEvent

Fired when a task is created

TaskUpdatedEvent

Fired when a task is updated

TaskCompleteEvent

Fired when a task is completed

TaskCloseEvent

Fired when a task is closed (usually when the state changed and there are still open tasks)

TaskAssignEvent

Fired when a task is assigned

TaskDueDateExpiredEvent

Fired when a task due date is expired

Info

Check Comala Document Management API's com.comalatech.workflow.event package and subpackages for more event types in the Javadoc documentation here.

The JAVA API event ContentApproveEvent (Comala Workflows API 6.17.3) has been removed from v7.0+ releases. Comala Document Management Java API in v7.0+ releases use the following for approval events - Approval ApprovedEvent (Comala Workflows API 7.0.0 API)

Usage

Workflow events are handled the same way as Confluence events

...