All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.acme.travels.usertasks.CustomHumanTaskLifeCycle Maven / Gradle / Ivy

There is a newer version: 1.7.0.Final
Show newest version
/*
 * Copyright 2020 Red Hat, Inc. and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.acme.travels.usertasks;

import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.Map;

import org.jbpm.process.instance.impl.humantask.BaseHumanTaskLifeCycle;
import org.jbpm.process.instance.impl.humantask.HumanTaskWorkItemImpl;
import org.jbpm.process.instance.impl.humantask.phases.Claim;
import org.jbpm.process.instance.impl.humantask.phases.Release;
import org.jbpm.process.instance.impl.humantask.phases.Skip;
import org.jbpm.process.instance.impl.workitem.Abort;
import org.jbpm.process.instance.impl.workitem.Active;
import org.jbpm.process.instance.impl.workitem.Complete;
import org.kie.kogito.internal.process.runtime.KogitoWorkItem;
import org.kie.kogito.internal.process.runtime.KogitoWorkItemManager;
import org.kie.kogito.process.workitem.InvalidLifeCyclePhaseException;
import org.kie.kogito.process.workitem.InvalidTransitionException;
import org.kie.kogito.process.workitem.LifeCycle;
import org.kie.kogito.process.workitem.LifeCyclePhase;
import org.kie.kogito.process.workitem.NotAuthorizedException;
import org.kie.kogito.process.workitem.Policy;
import org.kie.kogito.process.workitem.Transition;
import org.kie.kogito.process.workitems.InternalKogitoWorkItemManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Custom life cycle definition for human tasks. It comes with following phases
 * 
 * 
    *
  • Active
  • *
  • Claim
  • *
  • Release
  • *
  • Start
  • *
  • Complete - extended one that allows to only complete started tasks
  • *
  • Skip
  • *
  • Abort
  • *
* At the beginning human task enters * *
 * Active
 * 
* * phase. From there it can go to * *
    *
  • Claim
  • *
  • Skip
  • *
  • Abort
  • *
* * at any time. At each phase data can be associated and by that set on work item. * * Completion can only be performed on started tasks. */ public class CustomHumanTaskLifeCycle implements LifeCycle> { private static final Logger logger = LoggerFactory.getLogger(BaseHumanTaskLifeCycle.class); private Map phases = new LinkedHashMap<>(); public CustomHumanTaskLifeCycle() { phases.put(Claim.ID, new Claim()); phases.put(Release.ID, new Release()); phases.put(Start.ID, new Start()); phases.put(Complete.ID, new CompleteStartedOnly()); phases.put(Skip.ID, new Skip()); phases.put(Active.ID, new Active()); phases.put(Abort.ID, new Abort()); } @Override public LifeCyclePhase phaseById(String phaseId) { return phases.get(phaseId); } @Override public Collection phases() { return phases.values(); } @Override public Map transitionTo(KogitoWorkItem workItem, KogitoWorkItemManager manager, Transition> transition) { logger.debug("Transition method invoked for work item {} to transition to {}, currently in phase {} and status {}", workItem.getStringId(), transition.phase(), workItem.getPhaseId(), workItem.getPhaseStatus()); HumanTaskWorkItemImpl humanTaskWorkItem = (HumanTaskWorkItemImpl) workItem; LifeCyclePhase targetPhase = phases.get(transition.phase()); if (targetPhase == null) { logger.debug("Target life cycle phase '{}' does not exist in {}", transition.phase(), this.getClass().getSimpleName()); throw new InvalidLifeCyclePhaseException(transition.phase()); } LifeCyclePhase currentPhase = phases.get(humanTaskWorkItem.getPhaseId()); if (!targetPhase.canTransition(currentPhase)) { logger.debug("Target life cycle phase '{}' cannot transition from current state '{}'", targetPhase.id(), currentPhase.id()); throw new InvalidTransitionException("Cannot transition from " + humanTaskWorkItem.getPhaseId() + " to " + targetPhase.id()); } if (!targetPhase.id().equals(Active.ID) && !targetPhase.id().equals(Abort.ID) && !humanTaskWorkItem.enforce(transition.policies().toArray(new Policy[transition.policies().size()]))) { throw new NotAuthorizedException("User is not authorized to access task instance with id " + humanTaskWorkItem.getStringId()); } humanTaskWorkItem.setPhaseId(targetPhase.id()); humanTaskWorkItem.setPhaseStatus(targetPhase.status()); targetPhase.apply(humanTaskWorkItem, transition); if (transition.data() != null) { logger.debug("Updating data for work item {}", targetPhase.id(), humanTaskWorkItem.getStringId()); humanTaskWorkItem.getResults().putAll(transition.data()); } logger.debug("Transition for work item {} to {} done, currently in phase {} and status {}", workItem.getStringId(), transition.phase(), workItem.getPhaseId(), workItem.getPhaseStatus()); if (targetPhase.isTerminating()) { logger.debug("Target life cycle phase '{}' is terminiating, completing work item {}", targetPhase.id(), humanTaskWorkItem.getStringId()); // since target life cycle phase is terminating completing work item ((InternalKogitoWorkItemManager) manager).internalCompleteWorkItem(humanTaskWorkItem); } return data(humanTaskWorkItem); } @Override public Map data(KogitoWorkItem workItem) { return ((HumanTaskWorkItemImpl) workItem).getResults(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy