Skip to content

Instantly share code, notes, and snippets.

@hasithaa
Created January 11, 2016 05:20
Show Gist options
  • Save hasithaa/e2da0942649914f008f7 to your computer and use it in GitHub Desktop.
Save hasithaa/e2da0942649914f008f7 to your computer and use it in GitHub Desktop.
package org.wso2.bpmn.helloworld.v2;
import org.activiti.engine.delegate.DelegateExecution;
import org.activiti.engine.delegate.JavaDelegate;
/**
* Hello World Service Task - Version 2.
*/
public class HelloWorldServiceTaskV2 implements JavaDelegate {
@Override
public void execute(DelegateExecution arg0) throws Exception {
// In version 2, Hello World string is improved.
System.out.println("Hello World ...!!! This is Second version of HelloWorld BPMN process.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment