Package org.springframework.batch.core.jsr

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

Related Classes of org.springframework.batch.core.jsr.JobListenerAdapter

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.