Skip to content

Instantly share code, notes, and snippets.

@Alcar32
Last active December 17, 2015 09:29
Show Gist options
  • Save Alcar32/5588010 to your computer and use it in GitHub Desktop.
Save Alcar32/5588010 to your computer and use it in GitHub Desktop.
AbstractMethodExposingBean Example
import de.dailab.jiactng.agentcore.action.AbstractMethodExposingBean;
public class HelloWorldExposingBean extends AbstractMethodExposingBean {
@Override
public void doInit() throws Exception {
super.doInit();
}
@Override
public void doStart() throws Exception {
super.doStart();
}
@Override
public void doStop() throws Exception {
log.info("Stopping Hello World Bean...");
super.doStop();
}
@Override
public void execute() {
super.execute();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment