Package com.starflow.wf.engine.event

Examples of com.starflow.wf.engine.event.AbstractFlowEvent


*/
public abstract class AbstractProcessListener implements ApplicationListener<ApplicationContextEvent> {
  protected final Logger logger = LoggerFactory.getLogger(getClass());
 
  public void onApplicationEvent(ApplicationContextEvent event) {
    AbstractFlowEvent _event = null;
    if(event instanceof AbstractFlowEvent)
      _event = (AbstractFlowEvent)event;
    else
      return;
   
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.event.AbstractFlowEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.