com.github.sourcegroove.batch.item.file.LayoutItemWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-batch-file-layout Show documentation
Show all versions of spring-batch-file-layout Show documentation
Layout driven spring batch item readers and writers
package com.github.sourcegroove.batch.item.file;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.batch.item.file.ResourceAwareItemWriterItemStream;
import org.springframework.beans.factory.InitializingBean;
public interface LayoutItemWriter extends ResourceAwareItemWriterItemStream, InitializingBean {
Log log = LogFactory.getLog(LayoutItemWriter.class);
default void enableHeaderCallback(Object object){
log.debug("enableHeaderCallback not implemented in writer");
}
default void enableFooterCallback(Object object){
log.debug("enableFooterCallback not implemented in writer");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy