org.dataloader.BatchLoaderContextProvider Maven / Gradle / Ivy
package org.dataloader;
/**
* A BatchLoaderContextProvider is used by the {@link org.dataloader.DataLoader} code to
* provide overall calling context to the {@link org.dataloader.BatchLoader} call. A common use
* case is for propagating user security credentials or database connection parameters for example.
*/
public interface BatchLoaderContextProvider {
/**
* @return a context object that may be needed in batch load calls
*/
Object getContext();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy