Examples of JobListenerAdapter


Examples of org.springframework.batch.core.jsr.JobListenerAdapter

      for(int i = 0; i < jobListeners.length; i++) {
        Object curListener = jobListeners[i];
        if(curListener instanceof JobExecutionListener) {
          listeners[i] = (JobExecutionListener) curListener;
        } else if(curListener instanceof JobListener){
          listeners[i] = new JobListenerAdapter((JobListener) curListener);
        }
      }

      this.jobExecutionListeners = listeners;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.