Skip to content

Instantly share code, notes, and snippets.

@Alcar32
Created May 15, 2013 22:49
Show Gist options
  • Save Alcar32/5588050 to your computer and use it in GitHub Desktop.
Save Alcar32/5588050 to your computer and use it in GitHub Desktop.
package examples.helloworld;
import de.dailab.jiactng.agentcore.AbstractAgentBean;
public class HelloWorldBean extends AbstractAgentBean {
@Override
public void doStart() throws Exception {
super.doStart();
log.info("Starting Hello World Bean...");
}
@Override
public void execute() {
System.out.println("Hello World!");
}
@Override
public void doStop() throws Exception {
log.info("Stopping Hello World Bean...");
super.doStop();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment