Package me.kafeitu.activiti.jumpfree

Source Code of me.kafeitu.activiti.jumpfree.JumpFreeActivityBehavior

package me.kafeitu.activiti.jumpfree;

import org.activiti.engine.impl.pvm.PvmTransition;
import org.activiti.engine.impl.pvm.delegate.ActivityBehavior;
import org.activiti.engine.impl.pvm.delegate.ActivityExecution;


/**
* @author henryyan
*/
public class JumpFreeActivityBehavior implements ActivityBehavior {

  private static final long serialVersionUID = 1L;

  @Override
  public void execute(ActivityExecution execution) throws Exception {
    PvmTransition transition = execution.getActivity().findOutgoingTransition("flow1");
    execution.take(transition);
  }

}
TOP

Related Classes of me.kafeitu.activiti.jumpfree.JumpFreeActivityBehavior

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.