Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
elguardian committed Sep 3, 2024
1 parent 848dbb4 commit a619afc
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
* Default Work Item handler based on the standard life cycle
*/
public class UserTaskKogitoWorkItemHandler extends DefaultKogitoWorkItemHandler {

private static String UT_SEPARATOR = System.getProperty("org.jbpm.ht.user.separator", ",");

public static final WorkItemPhaseState INACTIVE = WorkItemPhaseState.initialized();
Expand Down Expand Up @@ -88,11 +89,11 @@ public String getName() {
@Override
public WorkItemLifeCycle initialize() {
return new DefaultWorkItemLifeCycle(
TRANSITION_CREATED_ACTIVE,
TRANSITION_ACTIVATED_CLAIM,
TRANSITION_CREATED_ACTIVE,
TRANSITION_ACTIVATED_CLAIM,
TRANSITION_ACTIVATED_ABORT,
TRANSITION_ACTIVATED_COMPLETE,
TRANSITION_RESERVED_RELEASE,
TRANSITION_RESERVED_RELEASE,
TRANSITION_RESERVED_ABORT,
TRANSITION_RESERVED_COMPLETE);
}
Expand Down

0 comments on commit a619afc

Please sign in to comment.