Created
January 11, 2016 05:20
-
-
Save hasithaa/e2da0942649914f008f7 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.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