public static EasyBatchEngine buildEasyBatchEngine(int id) {
return new EasyBatchEngineBuilder()
.registerRecordReader(new GreetingJmsReader(id))
.registerRecordMapper(new DelimitedRecordMapper<Greeting>(Greeting.class, new String[]{"id","name"}))
.registerRecordProcessor(new GreetingSlowProcessor())
.build();
}