Skip to content

Instantly share code, notes, and snippets.

@hasithaa
Created January 11, 2016 05:17
Show Gist options
  • Save hasithaa/a031563bbd05f3010588 to your computer and use it in GitHub Desktop.
Save hasithaa/a031563bbd05f3010588 to your computer and use it in GitHub Desktop.
package org.wso2.bpmn.helloworld.v1;
import org.activiti.engine.delegate.DelegateExecution;
import org.activiti.engine.delegate.JavaDelegate;
/**
* Hello World Service Task- V1.
*/
public class HelloWorldServiceTaskV1 implements JavaDelegate {
@Override
public void execute(DelegateExecution arg0) throws Exception {
System.out.println("Hello World ...!!!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment