Package com.sample

Source Code of com.sample.AutoListener

package com.sample;

import org.activiti.engine.EngineServices;
import org.activiti.engine.RuntimeService;
import org.activiti.engine.delegate.DelegateExecution;
import org.activiti.engine.delegate.ExecutionListener;

public class AutoListener implements ExecutionListener {

  @Override
  public void notify(DelegateExecution execution) throws Exception {
    // TODO Auto-generated method stub
    EngineServices engineServices = execution.getEngineServices();
    RuntimeService runtimeService = engineServices.getRuntimeService();
    runtimeService.signal(execution.getId());
  }

}
TOP

Related Classes of com.sample.AutoListener

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.