Created
January 11, 2016 05:17
-
-
Save hasithaa/a031563bbd05f3010588 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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